为什么链表实现不起作用

huangapple go评论89阅读模式
英文:

Why is the Linked List implementation not working

问题

在你提供的Java代码中,你试图学习如何实现链表。你创建了一个在链表开头插入元素的方法,但当你通过主函数运行它时,似乎没有看到任何输出返回。

以下是你的代码的翻译部分:

  1. class ListNode{
  2. int data;
  3. ListNode next;
  4. ListNode(int data)
  5. {
  6. this.data = data;
  7. this.next = null;
  8. }
  9. }
  10. class Operations{
  11. static ListNode head = null;
  12. void insertStart(int num, ListNode head)
  13. {
  14. ListNode temp = new ListNode(num);
  15. if (head == null)
  16. {
  17. head = temp;
  18. }
  19. else{
  20. temp.next = head;
  21. head = temp;
  22. }
  23. }
  24. void display(ListNode head){
  25. ListNode temp = head;
  26. while (temp != null)
  27. {
  28. System.out.println(temp.data + "->");
  29. temp = temp.next;
  30. }
  31. }
  32. public static void main(String[] args) {
  33. Operations l1 = new Operations();
  34. l1.insertStart(5, head);
  35. l1.insertStart(4, head);
  36. l1.insertStart(3, head);
  37. l1.insertStart(2, head);
  38. l1.insertStart(1, head);
  39. l1.display(head);
  40. }
  41. }

请注意,你的插入方法可能存在问题,因为你传递了 head 参数,但似乎没有更新 head。这可能导致你的链表操作不按预期工作。你可以考虑修改插入方法以确保 head 在插入时正确更新。

英文:

So, im trying to learn the implementation of linked list in java. I created a method to insert in the start but when i run it through main, i don't see any output returned.

  1. class ListNode{
  2. int data;
  3. ListNode next;
  4. ListNode(int data)
  5. {
  6. this.data = data;
  7. this.next = null;
  8. }
  9. }
  10. class Operations{
  11. static ListNode head = null;
  12. void insertStart(int num, ListNode head)
  13. {
  14. ListNode temp = new ListNode(num);
  15. if (head == null)
  16. {
  17. head = temp;
  18. }
  19. else{
  20. temp.next = head;
  21. head = temp;
  22. }
  23. }
  24. void display(ListNode head){
  25. ListNode temp = head;
  26. while (temp != null)
  27. {
  28. System.out.println(temp.data+"->");
  29. temp = temp.next;
  30. }
  31. }
  32. public static void main(String[] args) {
  33. Operations l1 = new Operations();
  34. l1.insertStart(5,head);
  35. l1.insertStart(4, head);
  36. l1.insertStart(3, head);
  37. l1.insertStart(2, head);
  38. l1.insertStart(1, head);
  39. l1.display(head);
  40. }
  41. }

Can someone please help me, i can't seem to find the error. Everything seems perfect.

答案1

得分: 1

问题在于您将head作为参数传递给您的insert方法,因此它是一个局部变量。对局部变量的任何赋值将不会被调用者看到。

但是,退一步来说,将head作为参数传递给链表实例的方法实际上是不必要的。该实例应该知道它的头是什么。这揭示了另一个问题:head不应该是类的静态成员,而应该是一个实例变量:每个Operations的实例都应该有自己的head

这并不是问题,但insert的实现实际上不需要if...else结构。在任何情况下,都可以将temp.next赋给head,并且在任何情况下,都要设置headtemp

因此,请按以下方式更正您的代码:

  1. class ListNode {
  2. int data;
  3. ListNode next;
  4. ListNode(int data) {
  5. this.data = data;
  6. this.next = null;
  7. }
  8. }
  9. class Operations {
  10. ListNode head = null; // 不应该是静态的!每个实例都有自己的head
  11. void insertStart(int num) // head不应该是参数。使用实例变量。
  12. {
  13. ListNode temp = new ListNode(num);
  14. // 不需要区分空链表或非空链表:
  15. temp.next = head;
  16. head = temp;
  17. }
  18. void display() { // head不应该是参数。使用实例变量。
  19. ListNode temp = head;
  20. while (temp != null) {
  21. System.out.print(temp.data + "->"); // 在同一行上输出
  22. temp = temp.next;
  23. }
  24. System.out.println("null"); // 终止行
  25. }
  26. public static void main(String[] args) {
  27. Operations l1 = new Operations();
  28. l1.insertStart(5); // 不要将head作为参数传递。
  29. l1.insertStart(4);
  30. l1.insertStart(3);
  31. l1.insertStart(2);
  32. l1.insertStart(1);
  33. l1.display();
  34. }
  35. }
英文:

The problem is that you pass head as an argument to your insert method, and so it is a local variable. Any assignment to a local variable will not be seen by the caller.

But, taking a step back, it should not be necessary to pass head as argument to a method of your linked list instance. That instance should know "itself" what its head is. And that reveals another problem: head should not be a static member of your class, but an instance variable: every instance of Operations should have its own head.

Not a problem, but the implementation of insert doesn't really need the if...else construct. In either case you can assign temp.next=head, and in either case you want to set head=temp.

So correct your code as follows:

  1. class ListNode{
  2. int data;
  3. ListNode next;
  4. ListNode(int data)
  5. {
  6. this.data = data;
  7. this.next = null;
  8. }
  9. }
  10. class Operations{
  11. ListNode head = null; // Should not be static! Every instance has its own head
  12. void insertStart(int num) // head should not be an argument. Use the instance variable.
  13. {
  14. ListNode temp = new ListNode(num);
  15. // No distinction needed between empty list or non-empty list:
  16. temp.next = head;
  17. head = temp;
  18. }
  19. void display(){ // head should not be an argument. Use the instance variable.
  20. ListNode temp = head;
  21. while (temp != null)
  22. {
  23. System.out.print(temp.data+"->"); // Output on same line
  24. temp = temp.next;
  25. }
  26. System.out.println("null"); // Terminate the line
  27. }
  28. public static void main(String[] args) {
  29. Operations l1 = new Operations();
  30. l1.insertStart(5); // Don't pass the head as argument.
  31. l1.insertStart(4);
  32. l1.insertStart(3);
  33. l1.insertStart(2);
  34. l1.insertStart(1);
  35. l1.display();
  36. }
  37. }

答案2

得分: -1

以下是已翻译的代码部分:

  1. 这是你需要做的事情
  2. class ListNode {
  3. int data;
  4. ListNode next;
  5. ListNode(int data) {
  6. this.data = data;
  7. this.next = null;
  8. }
  9. }
  10. class Operations {
  11. static ListNode head = null;
  12. void insertStart(int num) {
  13. ListNode temp = new ListNode(num);
  14. if (head == null) {
  15. head = temp;
  16. } else {
  17. temp.next = head;
  18. head = temp;
  19. }
  20. }
  21. void display(ListNode head) {
  22. ListNode temp = head;
  23. while (temp != null) {
  24. System.out.println(temp.data + "->");
  25. temp = temp.next;
  26. }
  27. }
  28. public static void main(String[] args) {
  29. Operations l1 = new Operations();
  30. l1.insertStart(5);
  31. l1.insertStart(4);
  32. l1.insertStart(3);
  33. l1.insertStart(2);
  34. l1.insertStart(1);
  35. l1.display(head);
  36. }
  37. }
英文:

Here is what you need to do:

  1. class ListNode{
  2. int data;
  3. ListNode next;
  4. ListNode(int data)
  5. {
  6. this.data = data;
  7. this.next = null;
  8. }
  9. }
  10. class Operations{
  11. static ListNode head = null;
  12. void insertStart(int num)
  13. {
  14. ListNode temp = new ListNode(num);
  15. if (head == null)
  16. {
  17. head = temp;
  18. }
  19. else{
  20. temp.next = head;
  21. head = temp;
  22. }
  23. }
  24. void display(ListNode head){
  25. ListNode temp = head;
  26. while (temp != null)
  27. {
  28. System.out.println(temp.data+"->");
  29. temp = temp.next;
  30. }
  31. }
  32. public static void main(String[] args) {
  33. Operations l1 = new Operations();
  34. l1.insertStart(5);
  35. l1.insertStart(4);
  36. l1.insertStart(3);
  37. l1.insertStart(2);
  38. l1.insertStart(1);
  39. l1.display(head);
  40. }
  41. }

huangapple
  • 本文由 发表于 2023年4月4日 14:03:36
  • 转载请务必保留本文链接:https://go.coder-hub.com/75925961.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定