gpt4 book ai didi

java - 在链表中搜索现有成员时返回 boolean 结果 - java

转载 作者:行者123 更新时间:2023-12-02 11:51:41 24 4
gpt4 key购买 nike

我正在为类编写一个程序,该程序使用户进入无限循环并接受三个不同的命令(添加x、删除x、存在x)+一个整数值。当用户输入“exists x”时,程序应返回一个 boolean 结果,指示该值是否存在于列表中。

添加 x 和删除 x 的方法工作得很好,但是在搜索列表时我无法产生“真/假”结果。我尝试了几种不同的方法,这是我目前使用exists x 方法的情况:

public class LinkedNode {
public int x; // The data value

public LinkedNode next; // Reference to the next LinkedNode

// Default constructor
LinkedNode() {
next = null;
}

// Constructor that initializes the data values
LinkedNode(int x) {
this.x = x;
}

public void display() {
System.out.print(x + " ");
}

}


public class Set {

public LinkedNode firstLink;

Set(){
firstLink = null;
}

public boolean isEmpty() {
return (firstLink == null); //nothing in Set yet
}

public void add(int x) {
LinkedNode newLink = new LinkedNode(x);

newLink.next = firstLink;
firstLink = newLink;
}

public boolean exists(int x) {

LinkedNode theLink = firstLink;

while (theLink.x != x) { // keep searching until match
if (theLink.next == null) // we've hit the end without a match, return false
return false;
else
theLink = theLink.next;
}
return true;
}

public LinkedNode delete(int x) {
LinkedNode currentLink = firstLink;
LinkedNode previousLink = firstLink;

while (currentLink.x != x) { // search while no match is found
if (currentLink.next == null) {
return null; // not found
} else { // moves to next LinkedNode
previousLink = currentLink;
currentLink = currentLink.next;
}
}
if (currentLink == firstLink) { // first link matches search
firstLink = firstLink.next; // delete link
}
else { // any other link is a match except firstLink
previousLink.next = currentLink.next;
}
return currentLink;
}

public String toString() {
String str = "";

LinkedNode cur = firstLink;
while (cur!=null) {
str += cur.x + " ";
cur = cur.next;
}
return str;
}

}

这是我的测试/驱动程序:

import java.util.*;

public class Test {

public static void main(String[] args) {
Set dataSet = new Set();
Scanner input = new Scanner(System.in);


while (1<2) { // infinite loop on purpose

String command, value;
System.out.print("Enter command: ");
String line = input.nextLine();
String [] userInput = line.split(" ");
command = userInput [0];
value = userInput [1];

if (!command.equalsIgnoreCase("add") && !command.equalsIgnoreCase("del") && !command.equalsIgnoreCase("exists")){
System.out.println("Invalid command.");
System.out.println("Valid commands are: add x, del x & exists x");
System.out.print("Enter command: ");
}
else if (command.equalsIgnoreCase("add")) {
dataSet.add(Integer.parseInt(value));
System.out.println(dataSet);
}
else if (command.equalsIgnoreCase("del")){
dataSet.delete(Integer.parseInt(value));
System.out.println(dataSet);
}
else if (command.equalsIgnoreCase("exists"));{
dataSet.exists(Integer.parseInt(value));
System.out.println(dataSet);

}
}

如果搜索的值存在于链接中,我希望程序显示“true/false”,类似于添加/删除后显示当前列表的方式。关于我哪里出错的任何提示?

Enter command: add 3
3
Enter command: add 1
1 3
Enter command: add 20
20 1 3
Enter command: exists 20
Enter command:

最佳答案

你真的很接近,你的代码实际上工作得很好,只是你那里有一个小错字,导致它失败!

else if (command.equalsIgnoreCase("exists"));{

此代码末尾包含一个分号,不幸的是,这是有效的 Java,因此不会引发任何编译时异常。通常,您应该收到一条警告:

Blockquote 'if' statement has empty body

此外,因为这是执行每个循环,所以结果会显示两次,因此删除分号应该可以解决问题:

else if (command.equalsIgnoreCase("exists")) {
System.out.println(dataSet.exists(Integer.parseInt(value)));
System.out.println(dataSet);
}

在代码示例中,为了清楚起见,我打印了 LinkedList 中是否存在该值的结果。

注意:每次要求用户输入命令时添加一个新行以允许拆分不同的命令也可能是值得的:

System.out.print("\nEnter command: ");

再说一遍,这纯粹是装饰性的,只是让你的输出更具可读性!

关于java - 在链表中搜索现有成员时返回 boolean 结果 - java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47841496/

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