使用java设计算法,完成将两个递增的有序链表有序递增的单链表合并为一个有序递增的单链表,重复的元素只出现一次。

带头节点的单链表及其基本操作(Java实现) - m0_的博客 - CSDN博客
带头节点的单链表及其基本操作(Java实现)
数据结构与算法
package lwh.linearlist.
public class Node {
protected int
protected N
public Node(){};
public Node(int e){
public Node(int e, Node next){
this.next =
package lwh.linearlist.
import java.util.S
public class LinkedList {
public LinkedList(){
Node node = new Node();
node.next = null;
public void createListHead(){
Scanner sc = new Scanner(System.in);
while(sc.hasNext()){
int num = sc.nextInt();
if(num != 99){
Node node = new Node(num);
node.next = head.
head.next =
public void createListTail(){
Node tail =
Scanner sc = new Scanner(System.in);
while(sc.hasNext()){
int num = sc.nextInt();
if(num != 99){
Node node = new Node(num);
tail.next =
public int length(){
Node p = head.
int i = 0;
while(p != null){
public Node findIndex(int i){
if(i == 0){
if(i & 0){
return null;
int j = 1;
Node p = head.
while(p != null && j & i){
public Node findValue(int x){
Node p = head.
while(p != null && p.e != x){
public boolean insert(int i, int x){
if(i & 1){
System.out.println("Insert index illeagal");
return false;
Node p = head.
int j = 1;
while(p != null && j & i){
Node node = new Node(x);
node.next = q.
return true;
public boolean delete(int i){
if(i & 1){
System.out.println("Delete index illegal");
return false;
if(i & length()){
System.out.println("Delete index illegal");
return false;
Node p = head.
int j = 1;
while(p != null && j & i){
q.next = p.
p.next = null;
return true;
public void deleteAllx1(int x){
Node p = head.
while(p != null){
while(p != null && p.e != x){
if(p != null){
q.next = p.
p.next = null;
q.next = null;
public void deleteAllx2(int x){
Node q = head.
while(q != null){
if(q.e == x){
p.next = q.
public void deleteAllx3(int x){
Node r = head, p = head.next,
while(p != null){
if(p.e != x){
r.next = null;
public void reversePrint1(){
if(head.next == null){
System.out.println("No num");
StringBuilder sb = new StringBuilder();
Node node = head.
while(node != null){
sb.append(node.e);
node = node.
System.out.println(sb.reverse().toString());
public void reversePrint2(){
reversePrint2(head.next);
System.out.println();
private void reversePrint2(Node node){
if(node.next != null){
reversePrint2(node.next);
System.out.print(node.e);
public boolean deleteMin(){
if(head.next == null){
System.out.println("No num");
return false;
Node q = head, p = head.next, r = head.
while(p.next != null){
if(p.next.e & r.e){
q.next = r.
r.next = null;
return true;
public boolean reverse(){
if(length() & 2){
System.out.println("No need to reverse");
return false;
Node p = head.
Node q = p.
boolean flag = true;
while(q != null){
Node r = q.
p.next = null;
flag = false;
head.next =
return true;
public boolean sort(){
if(length() & 2){
System.out.println("No need to sort");
return false;
Node q = head.next.
Node r = q.
head.next.next = null;
while(q != null){
Node pre =
Node p = head.
while(p != null && q.e & p.e){
pre.next =
if(r != null)
return true;
public boolean deleteInterval(int a, int b){
if(a & b){
System.out.println("Input a &= b");
return false;
Node q = head.
while(q != null){
if(q.e &= a && q.e &= b){
p.next = q.
q.next = null;
return true;
public void sortPrint(){
while(head.next != null){
Node pre =
Node p = pre.next, r = pre.
while(p.next != null){
if(p.next.e & r.e){
System.out.print(r.e + ",");
pre.next = r.
r.next = null;
public void breakIntoTwo1(){
LinkedList list1 = new LinkedList();
LinkedList list2 = new LinkedList();
Node p = head.
Node q = list1.
Node r = list2.
int i = 1;
while(p != null){
if(i % 2 == 0){
q.next = null;
r.next = null;
list1.print();
list2.print();
public void breakIntoTwo2(){
LinkedList list1 = new LinkedList();
LinkedList list2 = new LinkedList();
Node p = head.
Node q = list1.
Node r = list2.
int i = 1;
while(p != null){
Node pre = p.
if(i % 2 == 0){
p.next = r.
q.next = null;
list1.print();
list2.print();
public void deleteDuplicate(){
Node p = head.
Node q = p.
while(q != null){
if(p.e == q.e){
p.next = null;
public void mergeSort(LinkedList list2){
Node p = this.head.
Node q = list2.head.
LinkedList newlist = new LinkedList();
Node r = newlist.
Node after = null;
while(p != null && q != null){
if(p.e & q.e){
after = p.
p.next = r.
after = q.
q.next = r.
if(q == null){
while(p != null){
after = p.
p.next = r.
if(p == null){
while(q != null){
after = q.
q.next = r.
newlist.print();
public void intersect1(LinkedList list2){
Node pre = this.head, p = pre.
while(p != null){
Node q = list2.head.
boolean flag = false;
while(q != null){
if(q.e == p.e){
flag = true;
pre.next = p.
p.next = null;
public void intersect2(LinkedList list2){
Node pre = this.head, p = pre.
Node q = list2.head.
while(p != null && q != null){
if(p.e == q.e){
pre.next =
}else if(p.e & q.e){
pre.next = null;
public LinkedList intersectC(LinkedList list2){
LinkedList newList = new LinkedList();
Node r = newList.
Node p = this.head.
Node q = list2.head.
while(p != null && q != null){
if(p.e == q.e){
Node node = new Node(p.e);
}else if(p.e & q.e){
return newL
public boolean AisContainsB1(LinkedList list2){
if(this.length() & list2.length()){
return false;
Node p = this.head.
Node q = list2.head.
boolean flag = true;
while(p != null && q != null){
if(p.e != q.e){
q = list2.head.
if(q == null){
return true;
flag = false;
return false;
public boolean AisContainsB2(LinkedList list2){
if(this.length() & list2.length()){
return false;
Node p = this.head.next, pre =
Node q = list2.head.
while(p != null && q != null){
if(p.e == q.e){
pre = pre.
q = list2.head.
if(q == null){
return true;
return false;
public void print() {
if(head.next == null){
System.out.println("No num");
System.out.print("[");
for(Node node = head. node != null; node = node.next){
if(node.next != null)
System.out.print(node.e + ",");
System.out.print(node.e + "]");
System.out.println();
我的热门文章1799人阅读
LeetCode(132)
  Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
  合并两个排序链表并返回一个新的列表。新的链表的结果由原先的两个链表结点组成,也就是不能合并后的链表不能包含新创建的结点。
  使用头结点root进行辅助操作,创建一个头结点,再使用两个引用指向两个链表的头结点,将较小的结点值的结点摘下来接到root链表的末尾,同时被摘的链头引用移动到下一个结点,一直操作,到到原先两个链表中有一个为空,最后再将剩下的结点接到root链表的末尾。最后返回root的下一个结点,其就为新的链表头。
链表结点类
public class ListNode {
ListNode(int x) {
next = null;
算法实现类
public class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
ListNode head = new ListNode(0);
ListNode tail =
while (l1 != null && l2 != null) {
if (l1.val &= l2.val) {
tail.next = l1;
tail.next = l2;
tail = tail.
tail.next = (l1 != null ? l1 : l2);
return head.
  点击图片,鼠标不释放,拖动一段位置,释放后在新的窗口中查看完整图片。
欢迎转载,转载请注明出处【】
&&相关文章推荐
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:849884次
积分:14013
积分:14013
排名:第937名
原创:485篇
转载:16篇
译文:13篇
评论:193条
文章:32篇
阅读:8831
文章:28篇
阅读:36174
文章:105篇
阅读:179067
文章:12篇
阅读:12108
阅读:12530
文章:126篇
阅读:290660
文章:24篇
阅读:62074
文章:65篇
阅读:148186
(window.slotbydup = window.slotbydup || []).push({
id: '4740881',
container: s,
size: '200,200',
display: 'inlay-fix'欢迎转载,但请保留文章原始出处&_&&
生命壹号:
文章来源:
这份笔记整理了整整一个星期,每一行代码都是自己默写完成,并测试运行成功,同时也回顾了一下《剑指offer》这本书中和链表有关的讲解,希望对笔试和面试有所帮助。OMG!
本文包含链表的以下内容:
  1、单链表的创建和遍历
  2、求单链表中节点的个数
  3、查找单链表中的倒数第k个结点(剑指offer,题15)
  4、查找单链表中的中间结点
  5、合并两个有序的单链表,合并之后的链表依然有序【出现频率高】(剑指offer,题17)
  6、单链表的反转【出现频率最高】(剑指offer,题16)
  7、从尾到头打印单链表(剑指offer,题5)
  8、判断单链表是否有环
  9、取出有环链表中,环的长度
  10、单链表中,取出环的起始点(剑指offer,题56)。本题需利用上面的第8题和第9题。
  11、判断两个单链表相交的第一个交点(剑指offer,题37)
此外,《剑指offer》中还有如下和链表相关的题目暂时还没有收录:(以后再收录)
剑指offer,题13:在O(1)时间删除链表结点
剑指offer,题26:复杂链表的复制
剑指offer,题45:圆圈中最后剩下的数字
剑指offer,题57:删除链表中
1、单链表的创建和遍历:
1 public class LinkList {
//方法:向链表中添加数据
public void add(int data) {
//判断链表为空的时候
if (head == null) {//如果头结点为空,说明这个链表还没有创建,那就把新的结点赋给头结点
head = new Node(data);
//创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)
current.next = new Node(data);
//把链表的当前索引向后移动一位
current = current.
//此步操作完成之后,current结点指向新添加的那个结点
//方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历
public void print(Node node) {
if (node == null) {
while (current != null) {
System.out.println(current.data);
current = current.
class Node {
//注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。
int //数据域
public Node(int data) {
this.data =
public static void main(String[] args) {
LinkList list = new LinkList();
//向LinkList中添加数据
for (int i = 0; i & 10; i++) {
list.add(i);
list.print(list.head);// 从head节点开始遍历输出
上方代码中,这里面的Node节点采用的是内部类来表示(33行)。使用内部类的最大好处是可以和外部类进行私有操作的互相访问。
注:内部类访问的特点是:内部类可以直接访问外部类的成员,包括私有;外部类要访问内部类的成员,必须先创建对象。
为了方便添加和遍历的操作,在LinkList类中添加一个成员变量current,用来表示当前节点的索引(03行)。
这里面的遍历链表的方法(20行)中,参数node表示从node节点开始遍历,不一定要从head节点遍历。
2、求单链表中节点的个数:
  注意检查链表是否为空。时间复杂度为O(n)。这个比较简单。
核心代码:
//方法:获取单链表的长度
public int getLength(Node head) {
if (head == null) {
int length = 0;
Node current =
while (current != null) {
current = current.
3、查找单链表中的倒数第k个结点:
3.1& 普通思路:
先将整个链表从头到尾遍历一次,计算出链表的长度size,得到链表的长度之后,就好办了,直接输出第(size-k)个节点就可以了(注意链表为空,k为0,k为1,k大于链表中节点个数时的情况
)。时间复杂度为O(n),大概思路如下:
1 public int findLastNode(int index) {
//index代表的是倒数第index的那个结点
//第一次遍历,得到链表的长度size
if (head == null) {
return -1;
while (current != null) {
current = current.
//第二次遍历,输出倒数第index个结点的数据
for (int i = 0; i & size - i++) {
current = current.
return current.
如果面试官不允许你遍历链表的长度,该怎么做呢?接下来就是。
3.2& 改进思路:(这种思路在其他题目中也有应用)
&&&& 这里需要声明两个指针:即两个结点型的变量first和second,首先让first和second都指向第一个结点,然后让second结点往后挪k-1个位置,此时first和second就间隔了k-1个位置,然后整体向后移动这两个节点,直到second节点走到最后一个结点的时候,此时first节点所指向的位置就是倒数第k个节点的位置。时间复杂度为O(n)
代码实现:(初版)
1 public Node findLastNode(Node head, int index) {
if (node == null) {
return null;
Node first =
Node second =
//让second结点往后挪index个位置
for (int i = 0; i & i++) {
second = second.
//让first和second结点整体向后移动,直到second结点为Null
while (second != null) {
first = first.
second = second.
//当second结点为空的时候,此时first指向的结点就是我们要找的结点
&代码实现:(最终版)(考虑k大于链表中结点个数时的情况时,抛出异常)
上面的代码中,看似已经实现了功能,其实还不够健壮:
  要注意k等于0的情况;
  如果k大于链表中节点个数时,就会报空指针异常,所以这里需要做一下判断。
核心代码如下:
public Node findLastNode(Node head, int k) {
if (k == 0 || head == null) {
return null;
Node first =
Node second =
//让second结点往后挪k-1个位置
for (int i = 0; i & k - 1; i++) {
System.out.println("i的值是" + i);
second = second.
if (second == null) { //说明k的值已经大于链表的长度了
//throw new NullPointerException("链表的长度小于" + k); //我们自己抛出异常,给用户以提示
return null;
//让first和second结点整体向后移动,直到second走到最后一个结点
while (second.next != null) {
first = first.
second = second.
//当second结点走到最后一个节点的时候,此时first指向的结点就是我们要找的结点
4、查找单链表中的中间结点:
同样,面试官不允许你算出链表的长度,该怎么做呢?
&&& 和上面的第2节一样,也是设置两个指针first和second,只不过这里是,两个指针同时向前走,second指针每次走两步,first指针每次走一步,直到second指针走到最后一个结点时,此时first指针所指的结点就是中间结点。注意链表为空,链表结点个数为1和2的情况。时间复杂度为O(n)。
代码实现:
//方法:查找链表的中间结点
public Node findMidNode(Node head) {
if (head == null) {
return null;
Node first =
Node second =
//每次移动时,让second结点移动两位,first结点移动一位
while (second != null && second.next != null) {
first = first.
second = second.next.
//直到second结点移动到null时,此时first指针指向的位置就是中间结点的位置
上方代码中,当n为偶数时,得到的中间结点是第n/2 + 1个结点。比如链表有6个节点时,得到的是第4个节点。
5、合并两个有序的单链表,合并之后的链表依然有序:
&&& 这道题经常被各公司考察。
  1-&2-&3-&4
  2-&3-&4-&5
  1-&2-&2-&3-&3-&4-&4-&5
解题思路:
  挨着比较链表1和链表2。
  这个类似于归并排序。尤其要注意两个链表都为空、和其中一个为空的情况。只需要O (1) 的空间。时间复杂度为O (max(len1,len2))
代码实现:
//两个参数代表的是两个链表的头结点
public Node mergeLinkList(Node head1, Node head2) {
if (head1 == null && head2 == null) {
//如果两个链表都为空
return null;
if (head1 == null) {
return head2;
if (head2 == null) {
return head1;
N //新链表的头结点
//current结点指向新链表
// 一开始,我们让current结点指向head1和head2中较小的数据,得到head结点
if (head1.data & head2.data) {
head = head1;
current = head1;
head1 = head1.
head = head2;
current = head2;
head2 = head2.
while (head1 != null && head2 != null) {
if (head1.data & head2.data) {
current.next = head1;
//新链表中,current指针的下一个结点对应较小的那个数据
current = current. //current指针下移
head1 = head1.
current.next = head2;
current = current.
head2 = head2.
//合并剩余的元素
if (head1 != null) { //说明链表2遍历完了,是空的
current.next = head1;
if (head2 != null) { //说明链表1遍历完了,是空的
current.next = head2;
&代码测试:
public static void main(String[] args) {
LinkList list1 = new LinkList();
LinkList list2 = new LinkList();
//向LinkList中添加数据
for (int i = 0; i & 4; i++) {
list1.add(i);
for (int i = 3; i & 8; i++) {
list2.add(i);
LinkList list3 = new LinkList();
list3.head = list3.mergeLinkList(list1.head, list2.head); //将list1和list2合并,存放到list3中
list3.print(list3.head);// 从head节点开始遍历输出
&上方代码中用到的add方法和print方法和第1小节中是一致的。
运行效果:
注:《剑指offer》中是用递归解决的,感觉有点难理解。
6、单链表的反转:【出现频率最高】
例如链表:
  1-&2-&3-&4
反转之后:
  4-&3-&2-&1
  从头到尾遍历原链表,每遍历一个结点,将其摘下放在新链表的最前端。注意链表为空和只有一个结点的情况。时间复杂度为O(n)&
方法1:(遍历)
//方法:链表的反转
public Node reverseList(Node head) {
//如果链表为空或者只有一个节点,无需反转,直接返回原链表的头结点
if (head == null || head.next == null) {
Node current =
Node next = null; //定义当前结点的下一个结点
Node reverseHead = null;
//反转后新链表的表头
while (current != null) {
next = current.
//暂时保存住当前结点的下一个结点,因为下一次要用
current.next = reverseH //将current的下一个结点指向新链表的头结点
reverseHead =
// 操作结束后,current节点后移
return reverseH
上方代码中,核心代码是第16、17行。
方法2:(递归)
这个方法有点难,先不讲了。
7、从尾到头打印单链表:
  对于这种颠倒顺序的问题,我们应该就会想到栈,后进先出。所以,这一题要么自己使用栈,要么让系统使用栈,也就是递归。注意链表为空的情况。时间复杂度为O(n)
  注:不要想着先将单链表反转,然后遍历输出,这样会破坏链表的结构,不建议。
方法1:(自己新建一个栈)
//方法:从尾到头打印单链表
public void reversePrint(Node head) {
if (head == null) {
Stack&Node& stack = new Stack&Node&();
//新建一个栈
Node current =
//将链表的所有结点压栈
while (current != null) {-
stack.push(current);
//将当前结点压栈
current = current.
//将栈中的结点打印输出即可
while (stack.size() & 0) {
System.out.println(stack.pop().data);
//出栈操作
方法2:(使用系统的栈:递归,代码优雅简洁)
public void reversePrint(Node head) {
if (head == null) {
reversePrint(head.next);
System.out.println(head.data);
总结:方法2是基于递归实现的,戴安看起来简洁优雅,但有个问题:当链表很长的时候,就会导致方法调用的层级很深,有可能造成栈溢出。而方法1的显式用栈,是基于循环实现的,代码的鲁棒性要更好一些。
8、判断单链表是否有环:
  这里也是用到两个指针,如果一个链表有环,那么用一个指针去遍历,是永远走不到头的。
  因此,我们用两个指针去遍历:first指针每次走一步,second指针每次走两步,如果first指针和second指针相遇,说明有环。时间复杂度为O (n)。
//方法:判断单链表是否有环
public boolean hasCycle(Node head) {
if (head == null) {
return false;
Node first =
Node second =
while (second != null) {
first = first.
//first指针走一步
second = second.next.
second指针走两步
if (first == second) {
//一旦两个指针相遇,说明链表是有环的
return true;
return false;
完整版代码:(包含测试部分)&
这里,我们还需要加一个重载的add(Node node)方法,在创建单向循环链表时要用到。
LinkList.java:
1 public class LinkList {
//方法:向链表中添加数据
public void add(int data) {
//判断链表为空的时候
if (head == null) {//如果头结点为空,说明这个链表还没有创建,那就把新的结点赋给头结点
head = new Node(data);
//创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)
current.next = new Node(data);
//把链表的当前索引向后移动一位
current = current.
//方法重载:向链表中添加结点
public void add(Node node) {
if (node == null) {
if (head == null) {
current.next =
current = current.
//方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历
public void print(Node node) {
if (node == null) {
while (current != null) {
System.out.println(current.data);
current = current.
//方法:检测单链表是否有环
public boolean hasCycle(Node head) {
if (head == null) {
return false;
Node first =
Node second =
while (second != null) {
first = first.
//first指针走一步
second = second.next.
//second指针走两步
if (first == second) {
//一旦两个指针相遇,说明链表是有环的
return true;
return false;
class Node {
//注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。
int //数据域
public Node(int data) {
this.data =
public static void main(String[] args) {
LinkList list = new LinkList();
//向LinkList中添加数据
for (int i = 0; i & 4; i++) {
list.add(i);
list.add(list.head);
//将头结点添加到链表当中,于是,单链表就有环了。备注:此时得到的这个环的结构,是下面的第8小节中图1的那种结构。
System.out.println(list.hasCycle(list.head));
检测单链表是否有环的代码是第50行。
88行:我们将头结点继续往链表中添加,此时单链表就环了。最终运行效果为true。
如果删掉了88行代码,此时单链表没有环,运行效果为false。
9、取出有环链表中,环的长度:
我们平时碰到的有环链表是下面的这种:(图1)
上图中环的长度是4。
但有可能也是下面的这种:(图2)
此时,上图中环的长度就是3了。
那怎么求出环的长度呢?
&&& 这里面,我们需要先利用上面的第7小节中的hasCycle方法(判断链表是否有环的那个方法),这个方法的返回值是boolean型,但是现在要把这个方法稍做修改,让其返回值为相遇的那个结点。然后,我们拿到这个相遇的结点就好办了,这个结点肯定是在环里嘛,我们可以让这个结点对应的指针一直往下走,直到它回到原点,就可以算出环的长度了。
//方法:判断单链表是否有环。返回的结点是相遇的那个结点
public Node hasCycle(Node head) {
if (head == null) {
return null;
Node first =
Node second =
while (second != null) {
first = first.
second = second.next.
if (first == second) {
//一旦两个指针相遇,说明链表是有环的
//将相遇的那个结点进行返回
return null;
//方法:有环链表中,获取环的长度。参数node代表的是相遇的那个结点
public int getCycleLength(Node node) {
if (head == null) {
Node current =
int length = 0;
while (current != null) {
current = current.
if (current == node) {
//当current结点走到原点的时候
完整版代码:(包含测试部分)
1 public class LinkList {
public int
//方法:向链表中添加数据
public void add(int data) {
//判断链表为空的时候
if (head == null) {//如果头结点为空,说明这个链表还没有创建,那就把新的结点赋给头结点
head = new Node(data);
//创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)
current.next = new Node(data);
//把链表的当前索引向后移动一位
current = current.
//此步操作完成之后,current结点指向新添加的那个结点
//方法重载:向链表中添加结点
public void add(Node node) {
if (node == null) {
if (head == null) {
current.next =
current = current.
//方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历
public void print(Node node) {
if (node == null) {
while (current != null) {
System.out.println(current.data);
current = current.
//方法:判断单链表是否有环。返回的结点是相遇的那个结点
public Node hasCycle(Node head) {
if (head == null) {
return null;
Node first =
Node second =
while (second != null) {
first = first.
second = second.next.
if (first == second) {
//一旦两个指针相遇,说明链表是有环的
//将相遇的那个结点进行返回
return null;
//方法:有环链表中,获取环的长度。参数node代表的是相遇的那个结点
public int getCycleLength(Node node) {
if (head == null) {
Node current =
int length = 0;
while (current != null) {
current = current.
if (current == node) {
//当current结点走到原点的时候
class Node {
//注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。
int //数据域
public Node(int data) {
this.data =
public static void main(String[] args) {
LinkList list1 = new LinkList();
Node second = null; //把第二个结点记下来
//向LinkList中添加数据
for (int i = 0; i & 4; i++) {
list1.add(i);
if (i == 1) {
second = list1.
//把第二个结点记下来
list1.add(second);
//将尾结点指向链表的第二个结点,于是单链表就有环了,备注:此时得到的环的结构,是本节中图2的那种结构
Node current = list1.hasCycle(list1.head);
//获取相遇的那个结点
System.out.println("环的长度为" + list1.getCycleLength(current));
&运行效果:
如果将上面的104至122行的测试代码改成下面这样的:(即:将图2中的结构改成图1中的结构)
public static void main(String[] args) {
LinkList list1 = new LinkList();
//向LinkList中添加数据
for (int i = 0; i & 4; i++) {
list1.add(i);
list1.add(list1.head); //将头结点添加到链表当中(将尾结点指向头结点),于是,单链表就有环了。备注:此时得到的这个环的结构,是本节中图1的那种结构。
Node current = list1.hasCycle(list1.head);
System.out.println("环的长度为" + list1.getCycleLength(current));
运行结果:
如果把上面的代码中的第8行删掉,那么这个链表就没有环了,于是运行的结果为0。
10、单链表中,取出环的起始点:
我们平时碰到的有环链表是下面的这种:(图1)
上图中环的起始点1。
但有可能也是下面的这种:(图2)
此时,上图中环的起始点是2。
  这里我们需要利用到上面第8小节的取出环的长度的方法getCycleLength,用这个方法来获取环的长度length。拿到环的长度length之后,需要用到两个指针变量first和second,先让second指针走length步;然后让first指针和second指针同时各走一步,当两个指针相遇时,相遇时的结点就是环的起始点。
注:为了找到环的起始点,我们需要先获取环的长度,而为了获取环的长度,我们需要先判断是否有环。所以这里面其实是用到了三个方法。
代码实现:
方法1的核心代码:
//方法:获取环的起始点。参数length表示环的长度
public Node getCycleStart(Node head, int cycleLength) {
if (head == null) {
return null;
Node first =
Node second =
//先让second指针走length步
for (int i = 0; i & cycleL i++) {
second = second.
//然后让first指针和second指针同时各走一步
while (first != null && second != null) {
first = first.
second = second.
if (first == second) { //如果两个指针相遇了,说明这个结点就是环的起始点
return null;
完整版代码:(含测试部分)
1 public class LinkList {
public int
//方法:向链表中添加数据
public void add(int data) {
//判断链表为空的时候
if (head == null) {//如果头结点为空,说明这个链表还没有创建,那就把新的结点赋给头结点
head = new Node(data);
//创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)
current.next = new Node(data);
//把链表的当前索引向后移动一位
current = current.
//此步操作完成之后,current结点指向新添加的那个结点
//方法重载:向链表中添加结点
public void add(Node node) {
if (node == null) {
if (head == null) {
current.next =
current = current.
//方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历
public void print(Node node) {
if (node == null) {
while (current != null) {
System.out.println(current.data);
current = current.
//方法:判断单链表是否有环。返回的结点是相遇的那个结点
public Node hasCycle(Node head) {
if (head == null) {
return null;
Node first =
Node second =
while (second != null) {
first = first.
second = second.next.
if (first == second) {
//一旦两个指针相遇,说明链表是有环的
//将相遇的那个结点进行返回
return null;
//方法:有环链表中,获取环的长度。参数node代表的是相遇的那个结点
public int getCycleLength(Node node) {
if (head == null) {
Node current =
int length = 0;
while (current != null) {
current = current.
if (current == node) {
//当current结点走到原点的时候
//方法:获取环的起始点。参数length表示环的长度
public Node getCycleStart(Node head, int cycleLength) {
if (head == null) {
return null;
Node first =
Node second =
//先让second指针走length步
for (int i = 0; i & cycleL i++) {
second = second.
//然后让first指针和second指针同时各走一步
while (first != null && second != null) {
first = first.
second = second.
if (first == second) { //如果两个指针相遇了,说明这个结点就是环的起始点
return null;
class Node {
//注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。
int //数据域
public Node(int data) {
this.data =
public static void main(String[] args) {
LinkList list1 = new LinkList();
Node second = null; //把第二个结点记下来
//向LinkList中添加数据
for (int i = 0; i & 4; i++) {
list1.add(i);
if (i == 1) {
second = list1.
//把第二个结点记下来
list1.add(second);
//将尾结点指向链表的第二个结点,于是单链表就有环了,备注:此时得到的环的结构,是本节中图2的那种结构
Node current = list1.hasCycle(list1.head);
//获取相遇的那个结点
int length = list1.getCycleLength(current); //获取环的长度
System.out.println("环的起始点是" + list1.getCycleStart(list1.head, length).data);
11、判断两个单链表相交的第一个交点:
  《剑指offer》P193,5.3,面试题37就有这道题。
  面试时,很多人碰到这道题的第一反应是:在第一个链表上顺序遍历每个结点,每遍历到一个结点的时候,在第二个链表上顺序遍历每个结点。如果在第二个链表上有一个结点和第一个链表上的结点一样,说明两个链表在这个结点上重合。显然该方法的时间复杂度为O(len1 * len2)。
方法1:采用栈的思路
&&& 我们可以看出两个有公共结点而部分重合的链表,拓扑形状看起来像一个Y,而不可能是X型。 如下图所示:&&&
如上图所示,如果单链表有公共结点,那么最后一个结点(结点7)一定是一样的,而且是从中间的某一个结点(结点6)开始,后续的结点都是一样的。
现在的问题是,在单链表中,我们只能从头结点开始顺序遍历,最后才能到达尾结点。最后到达的尾节点却要先被比较,这听起来是不是像&先进后出&?于是我们就能想到利用栈的特点来解决这个问题:分别把两个链表的结点放入两个栈中,这样两个链表的尾结点就位于两个栈的栈顶,接下来比较下一个栈顶,直到找到最后一个相同的结点。
这种思路中,我们需要利用两个辅助栈,空间复杂度是O(len1+len2),时间复杂度是O(len1+len2)。和一开始的蛮力法相比,时间效率得到了提高,相当于是利用空间消耗换取时间效率。
那么,有没有更好的方法呢?接下来要讲。
方法2:判断两个链表相交的第一个结点:用到快慢指针,推荐(更优解)
我们在上面的方法2中,之所以用到栈,是因为我们想同时遍历到达两个链表的尾结点。其实为解决这个问题我们还有一个更简单的办法:首先遍历两个链表得到它们的长度。在第二次遍历的时候,在较长的链表上走 |len1-len2| 步,接着再同时在两个链表上遍历,找到的第一个相同的结点就是它们的第一个交点。
这种思路的时间复杂度也是O(len1+len2),但是我们不再需要辅助栈,因此提高了空间效率。当面试官肯定了我们的最后一种思路的时候,就可以动手写代码了。
核心代码:
//方法:求两个单链表相交的第一个交点
public Node getFirstCommonNode(Node head1, Node head2) {
if (head1 == null || head == null) {
return null;
int length1 = getLength(head1);
int length2 = getLength(head2);
int lengthDif = 0;
//两个链表长度的差值
Node longH
Node shortH
//找出较长的那个链表
if (length1 & length2) {
longHead = head1;
shortHead = head2;
lengthDif = length1 - length2;
longHead = head2;
shortHead = head1;
lengthDif = length2 - length1;
//将较长的那个链表的指针向前走length个距离
for (int i = 0; i & lengthD i++) {
longHead = longHead.
//将两个链表的指针同时向前移动
while (longHead != null && shortHead != null) {
if (longHead == shortHead) { //第一个相同的结点就是相交的第一个结点
return longH
longHead = longHead.
shortHead = shortHead.
return null;
//方法:获取单链表的长度
public int getLength(Node head) {
if (head == null) {
int length = 0;
Node current =
while (current != null) {
current = current.
  链接:
  书籍:《剑指offer》
明天就是腾讯的在线笔试了,加油!!!&
阅读(...) 评论()}

我要回帖

更多关于 已知顺序表递增有序 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信