IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 单链表的划分 -> 正文阅读

[数据结构与算法]单链表的划分

在这里插入图片描述
方法一:额外空间复杂度O(N),遍历链表,建立节点数组,利用荷兰旗问题中的方法划分数组,如何将数组中的节点成单链表。
方法二:建立三个单链表,分别存储小于、等于大于X的节点。再将三个单链表串一起。法二也可分为两种:
a、初始化六个节点为null。
b、建立三个Node(0)。

package class04P;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.StreamTokenizer;

public class Code05P_SmallerEqualBigger {

    public static StreamTokenizer st = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));

    static int nextInt(){
        try{
            st.nextToken();
            return (int)st.nval;
        }catch(Exception e){
            e.printStackTrace();
        }

        return 0;
    }

    public static Node newLinkedList(int len){
        if(len == 0) return null;
        Node head = new Node(nextInt());

        Node cur = head;
        for (int i = 0; i < len - 1; i++) {
            cur.next = new Node(nextInt());
            cur = cur.next;
        }

        return head;
    }

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

    public static Node smallerEqualBigger1(Node head, int x){

        Node SH = null, ST = null, EH = null, ET = null, BH = null, BT = null;
        while (head != null){
            Node next = head.next;
            head.next = null;//为了让三个链表拼接后,最后结点的next指向null
            if(head.val < x){
                if(ST == null){
                    SH = head;
                    ST = head;
                }else{
                    ST.next = head;
                    ST = head;
                }
            }else if(head.val == x){
                if(EH == null){
                    EH = head;
                    ET = head;
                }else{
                    ET.next = head;
                    ET = head;
                }
            }else{
                if(BT == null){
                    BH = head;
                    BT = head;
                }else{
                    BT.next = head;
                    BT = head;
                }
            }

            head = next;
        }

        if(SH == null){
            if(ET != null){
                ET.next = BH;
                SH = EH;
            }else{
                SH = BH;
            }
        }else{
            if(ET != null){
                ST.next = EH;
                ET.next = BH;
            }else{
                ST.next = BH;
            }
        }

        return SH;
    }

    public static Node smallerEqualBigger2(Node head, int x){
        Node n1 = new Node(0);
        Node n2 = new Node(0);
        Node n3 = new Node(0);
        Node tail1 = n1, tail2 = n2, tail3 = n3;

        while (head != null){
            if(head.val < x){
                tail1.next = head;
                tail1 = head;
            }else if(head.val == x){
                tail2.next = head;
                tail2 = head;
            }else{
                tail3.next = head;
                tail3 = head;
            }
            head = head.next;
        }

        tail2.next = n3.next;
        tail1.next = n2.next;
        tail3.next = null;

        return n1.next;
    }

    public static void printLinkedList(Node head){
        while(head != null){
            System.out.print(head.val + " ");
            head = head.next;
        }
        System.out.println();
    }
    public static void main(String[] args) {

        Node head = newLinkedList(7);

        printLinkedList(smallerEqualBigger2(head, 2));
    }

}

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2021-10-23 12:44:52  更:2021-10-23 12:46:09 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 8:35:44-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码