0
私はリンクされたリストを作成しようとしています。ユーザーが負の数を入力すると、ユーザーに正の数を入力するようメッセージが表示されます。私はユーザーの入力のためのコードを行っているが、他の部分のための非常に困難な - 負の入力とリンクnumbers.can誰も私にコードのこれらの部分を教えてください。リンクされたリストのユーザー入力
import java.io.*;
import java.util.Scanner;
class MyList{
public MyList firstLink,lastLink;
int info,size;
MyList link;
private MyList next;
MyList(){
this.link=null;
firstLink = null;
lastLink=null;
}
public boolean isEmpty(){
return(firstLink == null);
}
public void showMyList() {
MyList currentLink = firstLink;
System.out.print("List: ");
while(currentLink != null) {
currentLink.showMyList();
currentLink = currentLink.lastLink;
}
System.out.println("");
}
}
public class MyLinkedList {
public static void main(String[] args){
MyList newMyList=new MyList();
Scanner userInput= new Scanner(System.in);
int userInputNumber;
System.out.println("Enter Total Data");
userInputNumber = userInput.nextInt();
int i=1;
while(i<=userInputNumber){
System.out.println("Enter Data "+ i +":");
i++;
newMyList.info=userInput.nextInt();
}
if(newMyList.firstLink!=null){
newMyList=newMyList.firstLink;
newMyList=newMyList.lastLink;
newMyList.firstLink=newMyList.firstLink.link;
}
}
}
'if(userInputNumber <0)'?また、 'LinkedList'のネイティブ実装がどのように機能するのかを調べることもできます。 – SomeJavaGuy
このコードを渡して数字をリンクすることはできますか?それは私のために非常に役立つでしょう。 – Prem
クラスMyListはリンクリスト構造の実装ではありません。今リストのリストを持っています... –