java - 替换链表中的项目并排序

标签 java linked-list nodes

因此,我在替换链接列表中的项目时遇到问题,因为我同时添加和排序。例如,我想插入数字 2,7,3,因此在执行过程中,当我插入 3 时,我最终将其与 7 交换,因此列表如下所示:2,3,7。但现在我的代码在交换值期间挂起。

    public void ADD(E num) {
    Node<E> temp = new Node<>(num);
    if (this.head == null) {
        this.head = temp;
        System.out.println("Was empty");
    } else {


        Node<E> lead = this.head;
        Node<E> tail = this.head;

        while (lead != null) {

            if (lead.info.compareTo(temp.info) == -1) {//If the lead.info is less than the argument then -1 is returned.

                lastNode().next = temp; // adds to the end of linked list
                //System.out.println("it works");

            } 
            if (lead.info.compareTo(temp.info) == 1) { //if the greater than we swap out

                Node<E> z = lead;
                lead = temp;
                lastNode().next = lead;
                lead=lead.next;

            }
            lead=lead.next;

        }
    }

}

最佳答案

添加一个添加到前面的案例,保留一个 prev 引用(看起来你正在使用 lastNode() 做,但它是如何工作的并不明显)。

要添加到末尾,除了检查最后一个值是否小于正在插入一个。

应该是这样的:

 public void ADD(E num) {
    Node<E> temp = new Node<>(num);
    if (this.head == null) {
        this.head = temp;
        System.out.println("Was empty");
    } else {


        Node<E> lead = this.head;
        Node<E> prev = null; //modified

        //first check if it should be added at the front
        if (lead.info.compareTo(temp.info) == 1) { 
           temp.next = this.head;
           this.head = temp;
           System.out.println("added to front of list");
           return;
        }

        while (lead != null) {

            //if (lead.info.compareTo(temp.info) == -1) {//If the lead.info is less than the argument then -1 is returned.
            if (lead.next == null && lead.info.compareTo(temp.info) == -1){ //if at the end of the list and lead.info is less than the argument, add to the end

                //lastNode().next = temp; // adds to the end of linked list
                lead.next = temp;
                System.out.println("added to end of list");
                return; //return if node was added

            } 
            if (lead.info.compareTo(temp.info) == 1) { //if the greater than we swap out

                //Node<E> z = lead;
                prev.next = temp;
                temp.next = lead;
                //lead = temp;
                //lastNode().next = lead; //not needed if you use prev
                //lead=lead.next;
                System.out.println("added inside of list");
                return; //return if node was added

            }
            prev = lead; //added this, keep prev one behind lead
            lead=lead.next;

        }
    }

}

关于java - 替换链表中的项目并排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29528453/

相关文章:

java - BoxLayout:编译错误

c++ - 如何正确使用哨兵节点?

c++ - 需要使用 Book* head 变量重载运算符但不起作用

java - 如何从传递到方法的节点访问信息?

c++ - 在第 i 个位置添加节点

java - 我的 KeyBindings 不起作用,我想知道为什么

java - 点击“后退”按钮时 MediaPlayer 出现空指针异常

java - 如何使用 selenium webdriver 打开新的 chrome 选项卡?

python - 将列表转换为链表

elasticsearch - Elasticsearch匹配查询多词不精确词