gpt4 book ai didi

java - 为什么我的方法不应该打印出列表的最后一个元素?

转载 作者:行者123 更新时间:2023-11-30 10:50:30 25 4
gpt4 key购买 nike

使用单向链表,我返回一个集合 c,其中包含仅在集合 A 而不是在集合 B 中找到的元素。

集合 A 包含:30、20、item2、item1、10、26

B组包含:88、item3、30、item4、26、100

A.补充(B);应该给出 { 20 item2 item1 10 } 的输出,

但我得到的是 { 20 item2 item1 10 26 } 并且 '26' 不应该在集合中。即使在绘制列表图表后,我也无法弄清楚问题出在哪里。

public boolean otherContain(Object obj) { // returns true if object is
// inside singly linked list
Node cur = head.next;

while (cur != null) {
if (cur.object.equals(obj))
return true;
else
cur = cur.next;
}

return false;
}


public Set complement(Set a) {// return set containing elements only in A
// not shared with B
Set c = new Set();
Node curC = c.head;
Node cur = head.next;

while (cur != null) {

if (a.otherContain(cur.object)) {
cur = cur.next;
} else if (!a.otherContain(cur.object)) {
curC.next = cur;
curC = curC.next;
cur = cur.next;
}
}
return c;
}

***************更新的工作方法************************

    public Set complement(Set a) {// return set containing elements only in A
// not shared with B
Set c = new Set();
Node newNode = c.head;
Node cur = head.next;

while (cur != null) {

if (a.otherContain(cur.object)) {
cur = cur.next;
} else if (!a.otherContain(cur.object)) {
newNode.next = new Node(cur.object, newNode.next);
cur = cur.next;
}
}
return c;
}

最佳答案

你的问题是你在输出集中重复使用输入集的节点,所以你添加到输出集的最终节点 - 10 - 仍然指的是输入集的最后一个节点 - 26。你应该创建输出集的新节点。

public Set complement(Set a) {
Set c = new Set();
Node curC = c.head;
Node cur = head.next;

while (cur != null) {
if (!a.otherContain(cur.object)) {
Node newNode = new Node();
newNode.object = cur.object;
newNode.next = null;
curC.next = newNode;
curC = curC.next;
}
cur = cur.next;
}
return c;
}

关于java - 为什么我的方法不应该打印出列表的最后一个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35057061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com