数据结构与算法基础 -- 链表的Partition

实现链表的Partition过程
大于target 放右边 等于放中间 小于放左边

  • 方法一:用一个数组实现。该方法不保证稳定性并且空间复杂度O(N) 适合笔试机试

    • 首先是建立一个与链表同样大小的数组,然后再把所有的节点存储进去
    • 设置 三个变量
    • small —从-1开始,代表小于target的值 依次++
    • big —从最后开始 – 代表大于的值
    • index 代表当前遍历的位置
    • 遍历数组,当遇到小于 大于或者等于 target 的值 时 index 位置的值与 small 或者 big 位置元素互换 再++ 或者- -
  • 方法二:开辟三个链表 存储 小于 等于 大于 然后小于的尾指针.next = 等于链表的首指针 然后 等于链表的尾指针.next = 大于链表的首指针 然后 大于链表的尾指针.next = null 空间复杂度O(1)

/**
 * 实现链表的Partition过程
 * 大于target 放右边 等于放中间 小于放左边
 *
 * @author zhx
 */
public class SmallerEqualBigger {


    public static class Node{
        public int value;
        public Node next;
        public Node(int value){
           this.value = value;
        }
    }

    //链表的partition 用数组实现,没有稳定性,直接把所有的数据直接放入数组中,然后遍历 判断 最后交换值
    public static Node listPartition1(Node head, int pivot){
        if(head == null){
            return null;
        }

        Node cur = head;
        int i = 0; //得出链表的大小
        while (cur != null){
            i++;
            cur = cur.next;
        }
        Node[] nodeArr = new Node[i];
        i = 0;
        cur = head;
        for (i = 0; i < nodeArr.length; i++) {
            nodeArr[i] = cur;
            cur = cur.next;
        }
        arrPartition(nodeArr, pivot);
        for (i = 1; i != nodeArr.length; i++) { // 最后再把数组存储的节点连起来
            nodeArr[i - 1].next = nodeArr[i];
        }
        nodeArr[i - 1].next = null;
        return nodeArr[0];
    }

    public static void arrPartition(Node[] nodeArr, int pivot){
        int small = -1;
        int big = nodeArr.length;
        int index = 0;
        while (index != big){
            if(nodeArr[index].value < pivot){
                swap(nodeArr, ++small, index++);
            }else if(nodeArr[index].value == pivot){
                index++;
            }else {
                swap(nodeArr, --big, index); // 这里不再交换是因为要继续判断交换过来的值与pivot的大小关系
            }
        }

    }

    public static void swap(Node[] nodeArr, int a, int b){
        Node tmp = nodeArr[a];
        nodeArr[a] = nodeArr[b];
        nodeArr[b] = tmp;
    }

    // 利用small equal big 三个链表,这样放的时候就有
    public static Node listPartition2(Node head, int pivot){
        if(head == null){
            return null;
        }
        //定义三个三个链表。用六个变量保存这三个链表的最小值最大值,然后首尾相连
        //小的链表
        Node sH = null;
        Node sT = null;

        //相等链表
        Node eH = null;
        Node eT = null;

        //大的链表
        Node bH = null;
        Node bT = null;

        Node next = null;

        while (head != null){
            next = head.next;
            head.next = null;
            if(head.value < pivot){
                if(sH == null){
                    sH = head;
                    sT = head;
                }else {
                    sT.next = head;
                    sT = head;
                }
            }else if(head.value == pivot){
                if(eH == null){
                    eH = head;
                    eT = head;
                }else {
                    eT.next = head;
                    eT = head;
                }
            }else{
                if(head.value > pivot){
                    if(bH == null){
                        bH = head;
                        bT = head;
                    }else {
                        bT.next = head;
                        bT = head;
                    }
                }
            }
            head = next;
        }
        if(sT != null){
            sT.next = eH;
            eT = eT == null ? sT : eT;
        }
        if(eT != null){
            eT.next = bH;
        }
        return sH != null ? sH : eH != null ? eH : bH;
    }

    public static void printLinkedList(Node node) {
        System.out.print("Linked List: ");
        while (node != null) {
            System.out.print(node.value + " ");
            node = node.next;
        }
        System.out.println();
    }

    public static void main(String[] args) {
        Node head1 = new Node(7);
        head1.next = new Node(9);
        head1.next.next = new Node(1);
        head1.next.next.next = new Node(8);
        head1.next.next.next.next = new Node(5);
        head1.next.next.next.next.next = new Node(2);
        head1.next.next.next.next.next.next = new Node(5);
        printLinkedList(head1);
//         head1 = listPartition1(head1, 4);
        head1 = listPartition2(head1, 5);
        printLinkedList(head1);
    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值