繁体   English   中英

寻找链表的中间

[英]Finding middle of linkedlist

我试图找到一个单向链表的中间部分。 这直接来自这个 leetcode 问题。

我知道如何使用列表来解决这个问题,但我想知道为什么我的解决方案不起作用。

这是 ListNode class

    public class ListNode {
     int val;
     ListNode next;
      ListNode() {}
     ListNode(int val) { this.val = val; }
     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 }

这是我的源代码

  public class middle_linked_list {



    public static void main(String args[]){
        ListNode head = new ListNode(1);
        head.next = new ListNode(2);
        head.next.next = new ListNode(3);
        head.next.next.next = new ListNode(4);
        head.next.next.next.next = new ListNode(5);


        System.out.println(middleElement(head).val);
    }

    public static ListNode middleElement(ListNode head){

        int size = 0;
        float counter = 0;
        float middle = 0;

        ListNode mid = head;


        while(head != null)
        {
            ++size;
            head = head.next;
        }

        if(size % 2 == 0){
            middle = size/2f;

        }else{
            middle = Math.round(size/2f);
        }
        
       
        while(mid != null){


            if(counter == middle)
            {
                System.out.println(mid.val);
                return mid;
                
            }

            System.out.println(mid.val);
            ++counter;
            mid = mid.next;

        }



        return null;
    }
}

我的做法

  1. 遍历链表以找到链表的大小
  2. 声明一个名为 middle 的浮点变量
  3. 如果列表大小为奇数,我们四舍五入到最接近的 integer,如果为偶数,我们什么都不做。
  4. 如果计数器等于中间元素,那么我们返回中间

有人可以向我解释为什么我的代码不起作用

它适用于 [1,2,3,4] 和 [1,2,3,4,5,6] 等示例(基本上适用于所有偶数列表大小)但不适用于 1,2,3,4,5 ,6,7

干杯,非常感谢

您说您的代码不起作用,但事实并非如此,它起作用了,只是没有达到预期,请尝试在未来更清楚地了解问题。

无论如何,只要用 1 而不是 0 初始化计数器,就可以得到 go。

- 编辑 -

正如我所说,它在我的电脑上运行得很好,这是关于使用 == 运算符比较两个浮点数的问题。 它可能适用于某些系统或 JRE,但不适用于其他系统,据我所知,它与 Java 无关(Javascript 的行为相同),它与浮点数的小数部分的二进制表示有关在每个不同的系统中,这是一个高级和真正低级的主题,类型,我们作为开发人员,谢天谢地,不需要潜入太深来处理,我们只需要现在它存在并相应地处理它。 对于您的代码,无需使用浮点数,使用 integer 将解决问题并使解决方案适用于任何系统。

如果您想了解更多信息,请参阅链接:

https://howtodoinjava.com/java-examples/correctly-compare-float-double/

作为 Java 的良好做法,我冒昧地更改了您代码中的其他一些内容,请参阅评论:

class ListNode {
    //For the sake of encapsulation always keep class variables/attributes
    //as private and provide get/set methods as needed to access/update 
    //private values
    private int val;
    private ListNode next;

    
    public ListNode() {
    }

    public ListNode(int val) {
        this.val = val;
    }

    //getters and setters
    public int getVal() {
        return val;
    }

    public void setVal(int val) {
        this.val = val;
    }

    public ListNode getNext() {
        return next;
    }

    public void setNext(ListNode next) {
        this.next = next;
    }

    /* this constructor is mostly useless, you don't know who next is
     * before instantiating it, and if you instantiate next at the same
     * time as the current node then what will you do about next of next?
     * And what about next of next of next and so on? See the problem?   
    ListNode(int val, ListNode next) {
        this.val = val;
        this.next = next;
    }*/
}

//As a convention always use CamelCase for Java names, this
//will also require you to rename the file to MiddleLinkedList.java  
public final class MiddleLinkedList {
    
    public static void main(String[] args) {

        /* make the instantiating dynamic, instead of fixed 
        ListNode head = new ListNode(1);
        head.next = new ListNode(2);
        head.next.next = new ListNode(3);
        head.next.next.next = new ListNode(4);
        head.next.next.next.next = new ListNode(5);
        */
        
        //dynamically instantiating n nodes: 
        int val = 1;
        int n = 7; //total list size
        ListNode head = new ListNode(val); 
        ListNode node = head;
        val++;
        for (; val <= n; val++) {
            node.setNext(new ListNode(val)); //set next node
            //"node" variable becomes next for the next loop iteration
            node = node.getNext(); 
        }
        
        System.out.println("middle found: " + middleElement(head).getVal());
    }

    public static ListNode middleElement(final ListNode head) {
        //As a good practice it's better to declare parameters as final, 
        //that means you won't be able to reassign the head parameter

        int size = 0;
        //Don't use float or double when you're going to compare values, 
        //if you need to compare float numbers don't use ==, a different 
        //technique is required.
        
        //Changing variables to int:
        int counter = 1; 
        int middle = 0;

        ListNode mid = head;

        while (mid != null) {
            //I usually favor post-increment (size++) over pre-increment 
            //(++size), but these only become a issue when you assign the
            //increment or mix it with other operations, example: 
            //(x = y++) is not the same as (x = ++y) 
            //just as (x + y++) is not the same as (x + ++y) 
            size++;
            //we can't reassign head, since we changed it to final, so we 
            //need to work with a different variable:
            //head = head.getNext();
            mid = mid.getNext(); 
        }

        
        /* this whole block can be replaced by a single line, see the 
         * next statement
        if (size % 2 == 0) {
            middle = size / 2f;

        } else {
            middle = Math.round(size / 2f);
        }
        */
        
        //the division between two integers is always truncated, not 
        //rounded, truncating a number means any decimal value will 
        //be discarded, example: 1.999, will still be 1. 
        //the (size % 2) part will add the rest, 0 if even size, 1 if odd
        middle = (size / 2) + (size % 2);

        //again we set mid to the first element to iterate and find 
        //the middle one  
        mid = head;
        
        while (mid != null) {

            //comparing int or long with == is safe and predicted, don't 
            //use == to compare float or double 
            if (counter == middle) {
                System.out.println("the middle value is: "
                        + mid.getVal());
                return mid;
            }

            System.out.println("not the middle value: "
                    + mid.getVal());
            //again, I recommend sticking to post-increment, just because
            //is what most people do, these increments can be confusing 
            //and the source of some annoying bugs
            counter++;
            mid = mid.getNext();

        }

        return null;
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM