本文主要是介绍【大厂算法面试冲刺班】day1:数据结构先导课-链表、列表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
链表
/*链表结点类*/
class ListNode{int val; //结点值ListNode next; //指向下一结点的指针(引用)ListNode(int x){val = x;} //构造函数
}
在链表中查找值为target的首个结点
int find(ListNode head, int target){int index = 0;while(head != null){if(head.val == target)return index;head = head.next;index++;}return -1;
}
列表
//无初始值初始化列表
List<Integer> list1 = new ArrayList<>();
//有初始值,注意数组的元素类型需为int[]的包装类Integer[]
Integer[] numbers = new Integer[] {1, 3, 2, 5, 4};
List<Integer> list = new ArrayList<>(Arrays.asList(numbers));
这篇关于【大厂算法面试冲刺班】day1:数据结构先导课-链表、列表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!