数据结构之链表及相关算法

链表的定义

链表是链式存储结构,可以用任意一组存储单元来存储单链表中的数据元素,存储单元可以是不连续的。除了存储每个数据元素的值之外,还必须存储知识其直接后继元素的信息。定义如下的数据类存储结点信息。

//链表结点的定义
class Node{
    Node next = null; // 结点域
    int data; // 数据域
    public Node(int data){
        this.data = data;
    }
}

链表的创建

给定一个数组,用链表来存储这个数组。循环遍历数组,把每个元素链接到链表中,最后返回头结点。

public class TestNode{
    
    // 输入一个整型数组,创建成链表
    public Node createLinkList(int[] arr){
        Node head = new Node(arr[0]); //链表头
        Node r = head; // 指向链表尾结点
        for(int i=1; i<arr.length; i++){
            Node pNode = new Node(arr[i]); // 新结点的产生
            r.next = pNode; // 链表尾部增加新结点
            r = pNode; // r更新为新加的结点
        }
        return head;
    }
    
    // 返回链表的长度
    public int length(Node head) {
        int length = 0;
        Node tmp = head;
        while(tmp != null){
            length++;
            tmp = tmp.next;
        }
        return length;
    }
    
    // 顺序打印链表元素信息
    public void printLinkList(Node head){
        Node p = head;
        while(p != null){
            System.out.print(p.data+"->");
            p = p.next;
        }
        System.out.println();
    }
    
    public static void main(String[] args) {
        int[] arr = {1,3,6,8,12,15,20};
        TestNode testNode = new TestNode();
        Node head = testNode.createLinkList(arr);
        testNode.printLinkList(head);
    }
}

链表的相关算法

1. 找出单链表中的倒数第k个元素

设置两个指针p1、p2,p1先前移k-1步,然后p1、p2同时向前移动。循环直到先行的p1值为NULL时,p2所指的位置就是所要找的倒数第k个位置。

//找出单链表中的倒数第k个元素
public Node findElem(Node head, int k){
    if(k < 1 || k > this.length(head))
        return null;
    Node p1 = head;
    Node p2 = head;
    for(int i=0; i<k-1; i++) // p1先走k-1步
        p1 = p1.next;
    while(p1 != null){ // p1,p2同时走,直到p1为null
        p1 = p1.next;
        p2 = p2.next;
    }
    return p2;
}

2. 实现链表的反转

反转一个链表,需要调整指针的指向,具体需要操作3个相邻的结点。

//如何实现链表的反转
public Node ReverseIteratively(Node head){
    Node pReverseHead = head;
    Node pNode = head;
    Node pPrev = null;
    while(pNode != null){
        Node pNext = pNode.next;
        if(pNext == null)
            pReverseHead = pNode;
        pNode.next = pPrev;
        pPrev = pNode;
        pNode = pNext;
    }
    return pReverseHead;
}

3. 寻找单链表的中间结点

定义两个指针p、q,从头开始遍历,p一次走两步,q一次走一步,p先到链表尾部,q则恰好到达链表中部。

// 寻找单链表的中间结点
public Node SearchMid(Node head){
    Node p = head; 
    Node q = head; // 定义两个指针
    while(p != null && p.next != null && p.next.next != null){
        p = p.next.next; // 一个每次走两步
        q = q.next; // 一个每次走一步
    } // 每次走两步的指针p到结尾时,每次走一步的指针q刚好到中间结点
    return q;
}

4. 合并两个有序链表,并使合并后的链表也有序

// 合并两个有序链表,并使合并后的链表也有序
public Node mergeLink(Node head1, Node head2){
    Node head;
    Node p1 = head1;
    Node p2 = head2;
    if(head1.data < head2.data){
        head = new Node(head1.data);
        p1 = head1.next;
    }else{
        head = new Node(head2.data);
        p2 = head2.next;
    }
    Node pNode = head; 
    
    while(p1 != null && p2 != null){
        if(p1.data > p2.data){
            pNode.next = p2;
            p2 = p2.next;
        }else{
            pNode.next = p1;
            p1 = p1.next;
        }
        pNode = pNode.next;
    }
    if(p1 != null)
        pNode.next = p1;
    if(p2 != null)
        pNode.next = p2;
    return head;
}
// 合并两个有序链表的递归方法
public Node mergeLink2(Node head1, Node head2){
    if(head1 == null) // 检测head1是否为空
        return head2;
    else if(head2 == null) // 检测head2是否为空
        return head1;
    Node head = null;
    if(head1.data < head2.data){ 
        head = head1;
        head.next = mergeLink2(head1.next, head2); // 递归调用
    }else{
        head = head2;
        head.next = mergeLink2(head1, head2.next); // 递归调用
    }
    return head;
}

5. 判断两个链表是否相交

如果两个链表相交,那么一定有相同的尾结点。所以只要判断尾结点是否相等。

public boolean isIntersect(Node h1, Node h2){
    if(h1 == null || h2 == null)
        return false;
    Node tail1 = h1;
    while(tail1.next != null) // 找到链表h1的最后一个节点
        tail1 = tail1.next;
    Node tail2 = h2;
    while(tail2.next != null) // 找到链表h2的最后一个节点
        tail2 = tail2.next;
    return tail1 == tail2;
}

6. 找到两个链表相交的第一个节点

// 找到两个链表相交的第一个节点
public static Node getFirstMeetNode(Node h1, Node h2){
    if(h1 == null || h2 == null)
        return null;
    Node tail1 = h1;
    int len1 = 1;
    while(tail1.next != null){ // 找到链表h1的最后一个结点
        tail1 = tail1.next;
        len1++;
    }
    Node tail2 = h2;
    int len2 = 1;
    while(tail2.next != null){ // 找到链表h2的最后一个结点
        tail2 = tail2.next;
        len2++;
    }
    
    if(tail1 != tail2) // 两链表不相交
        return null;
    
    Node t1 = h1;
    Node t2 = h2;
    
    if(len1 > len2){ // 找出较长的链表先遍历
        int d = len1 - len2;
        while(d != 0){
            t1 = t1.next;
            d--;
        }
    }else{
        int d = len2 - len1;
        while(d != 0){
            t2 = t2.next;
            d--;
        }
    }
    while(t1 != t2){
        t1 = t1.next;
        t2 = t2.next;
    }
    return t1;
}

7. 检测一个链表是否有环

两个指针slow、fast一个一次走一步,一个一次走两步,如果有环,它们一定会相遇。

public boolean IsLoop(Node head){
    Node fast = head;
    Node slow = head;
    if(fast == null){
        return false;
    }
    while(fast != null && fast.next != null){
        fast = fast.next.next;  // 快指针一次走两步
        slow = slow.next; // 慢指针一次走一步
        if(fast == slow)
            return true;
    }
    return !(fast == null || fast.next == null);
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容