题解 | #从单向链表中删除指定值的节点#

从单向链表中删除指定值的节点

https://www.nowcoder.com/practice/f96cd47e812842269058d483a11ced4f

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        int n = in.nextInt();
        int first = in.nextInt();//头结点
        int[][] array = new int[n - 1][2];

        for (int i = 0; i < n - 1; i++) {
            array[i][0] = in.nextInt();
            array[i][1] = in.nextInt();
        }

        int deleteKey = in.nextInt();
        in.close();



        LinkList list = new LinkList(n);
        list.insertFirst(first);
        for (int i = 0; i < array.length; i++) {
            if(list.isContainTheKey(array[i][0])){
               list.insertAfter(array[i][0],array[i][1]);
//               list.display();
            }else{
               list.insertBefore(array[i][1],array[i][0]);
//               list.display();
            }

        }
       
        list.deleteByKey(deleteKey);
        list.display();



    }

    static class Link {

        public int  data;

        public Link next;

        Link(int data) {

            this.data = data;
        }

        public int peek() {

            return data;
        }

    }

    static class LinkList {

        private Link first;

        private int size;

        String [] result = new String[size];

        public LinkList(int n) {
            first = null;
            size = n;
        }


        public boolean isEmpty() {

            return (first == null);
        }

        public void insertFirst(int data) {

            Link newLink = new Link(data);
            newLink.next = first;//下一个为空
            first = newLink;

        }

        public Link deletFirst() {
            Link temp = first;
            first = first.next;

            return temp;
        }


        public void display() {
            // System.out.println();
            String str = "";
            Link current = first;
            while (current != null) {
//           current.display();
                str += current.data + " ";
                current = current.next;
            }
            result = str.split(" ");
            for (int i = result.length - 1; i >= 0; i--) {
                System.out.print(result[i]+" ");
            }
        }


        public  boolean isContainTheKey(int k) {
            Link current = first;
            while (current.next != null) {
                current = current.next;
                if (current.data == k)
                    return true;
            }
            return false;

        }

        public void insertLast(int data) {
            Link last = new Link(data);
            Link current = first;
            while (current.next != null) {
                current = current.next;
            }
            current.next = last;
        }

        public void deleteByKey(int key) {
            Link previous = first;
            Link current = first;
            while (current.data != key) {
                previous = current;
                current = current.next;
            }
            if (first == current) {
                first = first.next;
            } else {
                previous.next = current.next;
            }
            size--;

        }


        public void insertBefore(int key, int data) {

            if (key == first.data) {
                insertFirst(data);
//           this.display();
            } else {
                Link previous = first;
                Link current = first;
                Link  insert  = new Link(data);
                while (current.data != key && current.next != null) {
                    previous = current;
                    current = current.next;
                }
                previous.next = insert;
                insert.next = current;
            }

        }


        public  void insertAfter(int key, int data) {
            Link current = first;
            Link after = first;
            Link insert = new Link(data);
            while (current.next != null && current.data != key) {
                current = current.next;
                current.next = after;
            }
            if (current.next == null) {
                current.next = insert;
            } else {
                current.next = insert;
                insert.next = after;
            }

        }



    }

}

全部评论

相关推荐

Aurora23:属于挂一半,暂时进池子了,隔一段时间没有其他组捞的话就彻底结束了
点赞 评论 收藏
分享
头像
昨天 20:13
中南大学 Java
序言大家好呀。我是希晨er,一个初入职场的程序猿小登最近上班摸鱼刷到了一篇文章:10年深漂,放弃高薪,回长沙一年有感,还有聊聊30岁大龄程序员过往的心路历程,突然就有点感慨。我如今也做出了和大明哥一样的抉择,只是更早。此外我22年的人生,好像从来没好好记录过。正好现在工作不太忙,就想把这些经历写下来,也希望能得到社区里各位前辈的指点个人背景我是03年出生的西安娃,父母都是普通打工人。刚从中南大学软件工程专业毕业半年,现在在老家的央企过着躺平摆烂的日子成长轨迹从农村到城市的童年我家并不是西安的,只是爸妈在西安上班,从小学之后就把我接到了西安。后来老家房子拆了,爷爷奶奶也搬了过来。农村的生活,我觉...
Yki_:看哭了,恋爱那一段你女朋友说你不够关心她,可你毕竟也愿意遇到矛盾写几千字来和她慢慢分析;说不愿意给她花钱,我感觉可能只是消费观不一样;如果她想留在长沙,也应该提前跟你说开。不过她也许会心疼你放弃大厂offer转向数字马力?我也因为同样的原因有过一段幸福而充满遗憾的感情,不过跟爱情相比确实前途更重要一点。至于offer的选择,换我我也会这么选。把这些旧事记录下来以后,接下来就好好向前看吧,加油兄弟
🍊晨光随笔
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务