Leetcode上的链表问题

package cn.infobuy.gouqi.demo;

import cn.infobuy.gouqi.util.ListNode;
import cn.infobuy.gouqi.util.TreeNode;

/**
 * 关于链表
 * @author JohnLiu
 *
 */
public class ListSolution {
    /**
     * 链表反转
     * @param head
     * @param m
     * @param n
     * @return
     */
    public ListNode reverseBetween(ListNode head, int m, int n) {
        ListNode current = head;
        int count = 0;
        ListNode partHead=null;
        ListNode partEnd=null;
        while(current!=null) {
            // 表示当前的节点是第counter个节点
            count++;
            if(count==m-1) {
                partHead=current;
            }
            if(count==n+1) {
                partEnd=current;
            }
            current = current.next;
        }
        if(partHead==null) {
            return reverseList(head, partEnd);
        }else {
            ListNode newPartHead = reverseList(partHead.next, partEnd);
            partHead.next=newPartHead;
            return head;
        }
    }
    /**
     * 旋转链表
     * 给定一个链表,将链表每个节点向右移动 k 个位置,其中 k 是非负数。
     * @param head
     * @param k
     * @return
     */
    public ListNode rotateRight(ListNode head, int k) {
        if (head == null || k <= 0) {
            return head;
        }
        ListNode current = head;
        int n = 1;
        //O(n)
        while (current.next != null) {
            n++;
            current = current.next;
        }

        current.next = head;

        int count = n - k % n;
        ListNode result = null;
        for (int i = 0; i < count; i++) {
            current = current.next;
        }
        result = current.next;
        current.next = null;
        return result;
    }
    /**
     * k个一组翻转链表
     * 递归版本
     * @param head
     * @param k
     * @return
     */
    public ListNode reverseKGroup1(ListNode head, int k) {
        ListNode current_node = head;
        int count = 0;
        while (current_node != null && count != k) {
            current_node = current_node.next;
            count++;
        }
        if (count == k) {
            current_node = reverseKGroup(current_node, k);/// 递归的解决子问题
            while (count-- > 0) {
                ListNode temp = head.next;
                head.next = current_node;
                current_node = head;
                head = temp;
            }///最终,该段的所有节点将会截空,head应指向current_node
            head = current_node;
        }
        return head;        
   }
    /**
     * k个一组翻转链表
     * 迭代版本
     * @param head
     * @param k
     * @return
     */
    public ListNode reverseKGroup(ListNode head, int k) {
        ListNode finalhead = new ListNode(0);
        finalhead.next=head;
        ListNode partHead = null;
        ListNode partNextHead = head;
        ListNode parent = finalhead;
        while((partHead=partNextHead)!=null){
            // 迭代寻找 partNextHead
            int tmpK = k-1;
            while((partNextHead=partNextHead.next)!=null&&tmpK>0){
                tmpK--;
            }
            if(tmpK>0){
                break;
            }
            reverseList(parent,partHead,partNextHead);
            parent=partHead;
        }
        return finalhead.next;
    }
    /**
     * 通过三个指针实现整个链表[head,endTarget.pre]的翻转
     * head:记录链表的头部
     * surplexHead: 记录链表剩余的头部
     * next:当前操作的节点
     * @param head
     * @return
     */
    public ListNode reverseList(ListNode head,ListNode end){
        ListNode currentNode = null;
        ListNode surplexHead = head;
        // 一个head指针专门记录处理完成后的head节点
        head=end;
        while(surplexHead!=end){
            currentNode = surplexHead;
            surplexHead=currentNode.next;
            currentNode.next=head;
            head=currentNode;
        }
        return head;
    }
    public void reverseList(ListNode parent,ListNode head,ListNode end){
        // 当前操作的指针
        ListNode currentNode = null;
        // 未操作的头指针
        ListNode surplexHead = head;
        // 已操作好的头指针
        head=end;
        while(surplexHead!=end){
            currentNode = surplexHead;
            surplexHead=surplexHead.next;
            currentNode.next=head;
            head=currentNode;
        }
        parent.next=head;
    }
    /**
     * 合并两个有序链表为一个有序链表
     * @param l1
     * @param l2
     * @return
     */
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if(l1==null&&l2==null){
            return null;
        }
        if(l1==null){
            return l2;
        }
        if(l2==null){
            return l1;
        }
        if(l1.val>l2.val){
            l2.next=mergeTwoLists(l1,l2.next);
            return l2;
        }else{
            l1.next=mergeTwoLists(l1.next,l2);
            return l1;
        }
    }
    /**
     * 合并K个排序链表
     * 合并2个会的,那合并k个呢?
     * 
     * @param lists
     * @return
     */
    public ListNode mergeKLists(ListNode[] lists) {
        if (lists==null||lists.length==0){
            return null;
        }
        return mergeLists(lists,0,lists.length-1);
    }
    /**
     * 利用归并排序的思想
     * k个列表,每次拆成2堆,然后每堆生成一个排序后的链表,再将两个排序后的链表升为一个链表并返回
     * 时间复杂度为 O(lg(K)kn)
     * @param lists
     * @param left
     * @param right
     * @return
     */
    private ListNode mergeLists(ListNode[] lists, int left, int right) {
        int mid = (left+right)/2;
        if (left<right){
            ListNode l1 = mergeLists(lists, left, mid);
            ListNode l2 = mergeLists(lists, mid + 1, right);
            return mergeTwoLists(l1,l2);
        }
        return lists[left]; //如果left==right则直接返回左面的链表
    }
    /**
     * 删除链表的倒数第N个节点
     * @param head
     * @param n
     * @return
     */
    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode reachEnd=head;
        ListNode reachNth=head;
        int depth=n;
        // 确保 reachEnd 比 reachNth 快 n步
        while(depth>=1){
            reachEnd=reachEnd.next;
            depth--;
        }
        ListNode markPreNode = null;
        while(reachEnd!=null){
            reachEnd=reachEnd.next;
            markPreNode=reachNth;
            reachNth=reachNth.next;
        }
        if(head==reachNth){
            // 如果head被删除了
            return head.next;
        }else{
            markPreNode.next=reachNth.next;
            return head;
        }
    }
    /**
     * 两两交换链表中的节点
     * 给定 1->2->3->4, 你应该返回 2->1->4->3.
     * @param head
     * @return
     */
    public ListNode swapPairs(ListNode head) {
        if(head==null||head.next==null){
            return head;
        }
        ListNode a = new ListNode(0);
        a.next=head;
        head=a;
        while(head.next!=null&&head.next.next!=null){
            ListNode nextNode=head.next.next;
            ListNode firstNode = head.next;
            // swapPairs
            firstNode.next=nextNode.next;
            head.next=nextNode;
            nextNode.next=firstNode;
            // 迭代
            head=firstNode;
        }
        return a.next;
    }
    /**
     * 删除排序链表中的重复元素
     * @param head
     * @return
     */
    public ListNode deleteDuplicates(ListNode head) {
        ListNode l1 = head;
        //验证 head.next 是否要加入
        while(head!=null&&head.next!=null){
            if(head.next.val==head.val){
                head.next=head.next.next;
            }else{
                head = head.next;
            }
        }
        return l1;
    }
    /**
     * 删除排序链表中的重复元素 II
     * @param head
     * @return
     */
    public ListNode deleteDuplicates2(ListNode head) {
        // 标记头节点
        ListNode parent = new ListNode(-1);
        ListNode certainTail = parent;
        // 第一个节点暂定为head
        certainTail.next=head;
        // 指定目前暂定的节点,考虑是否要加入certainTail链表中
        ListNode tmpTail = head;
        while(tmpTail!=null&&tmpTail.next!=null) {
            if(tmpTail.val!=tmpTail.next.val) {
                certainTail.next=tmpTail;
                certainTail=tmpTail;
                tmpTail=tmpTail.next;
            }else {
                while(tmpTail.next!=null&&tmpTail.val==tmpTail.next.val) {
                    tmpTail.next=tmpTail.next.next;
                }
                tmpTail=tmpTail.next;
                certainTail.next=tmpTail;
            }
        }
        return parent.next;
    }
    /**
     * 分隔链表
     * 给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x 的节点之前。
     * 你应当保留两个分区中每个节点的初始相对位置。
     * @param head
     * @param x
     * @return
     */
    public ListNode partition(ListNode head, int x) {
        if(head==null) {
            return null;
        }
        ListNode top = head;
        ListNode current = null;
        // 验证head.next是否满足条件
        while(head.next!=null) {
            if(head.next.val<x) {
                current=head.next;
                head.next=head.next.next;
                current.next=top;
                top=current;
            }else {
                head = head.next;
            }
        }
        return top;
    }
    public ListNode partition2(ListNode head, int x) {
        ListNode top = new ListNode(0);
        top.next=head;
        head=top;
        ListNode current = null;
        ListNode newHead = null;
        ListNode newTail = null;
        // 验证head.next是否满足条件
        while(head.next!=null) {
            if(head.next.val<x) {
                current=head.next;
                head.next=head.next.next;
                if(newHead==null) {
                    newHead = current;
                    newTail = current;
                }else {
                    newTail.next=current;
                    newTail = current;
                }
            }else {
                head = head.next;
            }
        }
        if(newHead!=null) {
            newTail.next=top.next;
        }else {
            newHead = top.next;
        }
        return newHead;
    }
    /**
     * 将有序链表转为二叉树BST
     * @param head
     * @return
     */
    public TreeNode sortedListToBST(ListNode head) {
        return sortedListToBST(head,null);
    }
    public TreeNode sortedListToBST(ListNode head,ListNode end) {
        if(head==end) {
            return null;
        }
        ListNode fast = head;
        ListNode slow = head;
        while(fast!=end&&fast.next!=end) {
            fast = fast.next.next;
            slow = slow.next;
        }
        TreeNode c = new TreeNode(slow.val);
        c.left=sortedListToBST(head,slow);
        c.right=sortedListToBST(slow.next,end);
        return c;
    }
}

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

推荐阅读更多精彩内容