java LinkedList,leetcode #83,总是满足条件[已关闭]

uz75evzq  于 2023-05-12  发布在  Java
关注(0)|答案(2)|浏览(104)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
2天前关闭。
Improve this question
为什么这个代码不工作?if(head!= head.next)和(head.瓦尔!= head.next.瓦尔)在100%的情况下都有效。但我在答案中发现了一个对人有效的相同条件的代码。请帮我找出错误。
LeetCode:https://leetcode.com/problems/remove-duplicates-from-sorted-list/description/

  1. /**
  2. * Definition for singly-linked list.
  3. * public class ListNode {
  4. * int val;
  5. * ListNode next;
  6. * ListNode() {}
  7. * ListNode(int val) { this.val = val; }
  8. * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
  9. * }
  10. */
  11. class Solution {
  12. public ListNode deleteDuplicates(ListNode head) {
  13. ListNode trueResult = new ListNode(-1);
  14. ListNode result = trueResult;
  15. while (head != null) {
  16. if (head != head.next) {
  17. result.next = head;
  18. head = head.next;
  19. }
  20. result = result.next;
  21. }
  22. return trueResult.next;
  23. }
  24. }

结果:head = [1,1,2,3,3] output = [1,1,2,3,3] expected = [1,2,3]
这个代码工作。为什么?

  1. * Definition for singly-linked list.
  2. * public class ListNode {
  3. * int val;
  4. * ListNode next;
  5. * ListNode() {}
  6. * ListNode(int val) { this.val = val; }
  7. * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
  8. * }
  9. */
  10. class Solution {
  11. public ListNode deleteDuplicates(ListNode head) {
  12. ListNode temp = head;
  13. while( temp != null && temp.next != null ){
  14. if( temp.val == temp.next.val ){
  15. temp.next = temp.next.next;
  16. }
  17. else{
  18. temp = temp.next;
  19. }
  20. }
  21. return head;
  22. }
  23. }

if(head!= head.next)和if(head.瓦尔!= head.next.瓦尔)工作到100%情况。每次我都是一个糟糕的结果。
我尝试使用头。瓦尔!= head.next.瓦尔,但它不工作:(

ryevplcw

ryevplcw1#

你的代码中有一些问题。
1.参考文献比较

  1. if (head != head.next)

当比较references时,此条件始终为true。您应该比较ListNode#val

**a.**将校验替换为head.val != head.next.val。注意null检查head.next
**B.**如果head.next为null,则应始终使用if语句,因为这是最后一个元素

1.您始终将result提前,而不将head提前
即使你遇到了重复你提前的结果,这是没有意义的。如果我们发现一个重复,我们不应该前进result,因为我们没有修改列表。

**a.**每次迭代都需要推进head,而不是推进结果,即if语句外的模式head = head.next
**B.**只有在没有重复的情况下才需要提前结果,即move result前进到if语句

我将所有的亮点应用到你的代码中,你可以在下面看到:

  1. class Solution {
  2. public ListNode deleteDuplicates(ListNode head) {
  3. ListNode trueResult = new ListNode(-1);
  4. ListNode result = trueResult;
  5. while (head != null) {
  6. if (head.next == null || (head.next != null && head.val != head.next.val)) {
  7. result.next = head;
  8. result = result.next;
  9. }
  10. head = head.next;
  11. }
  12. return trueResult.next;
  13. }
  14. }

编码快乐!

展开查看全部
rur96b6h

rur96b6h2#

他们似乎想要这个(像):

  1. class Solution {
  2. public ListNode deleteDuplicates(ListNode head) {
  3. ListNode cur = head; // "cursor" head to tail
  4. while (cur != null) {
  5. ListNode del = cur.next; // cursor over "deletion candidates"
  6. while (del != null && del.val <= cur.val) { // del.val <= cur.val means it is not sorted or equal! del == null means we are done
  7. del = del.next; // just iterate (inner loop)..
  8. }
  9. // when terminated, we are good!:
  10. // del == null || del.val > cur.val (is now true!;)
  11. cur.next = del; // re-link
  12. cur = del; // iterate (outer loop)...
  13. } // outer done, cur == null (== "tail")
  14. return head; // return the original head (with (eventually) less "links"/nodes) ..all "forgotten nodes" are ready for GC
  15. }
  16. }

已接受

运行时间0毫秒心跳100%

内存42.7MB,心跳7.62%
展开查看全部

相关问题