hey all im a relative noob with progaming if i could get some help i would be greatfull
this is homework but not the whole assignment thank you all
So when i run this it works fine if i type in the name of the first node but none of the other nodes?
playring is a doubly circular linked list
String name = input.next();
`public boolean playRingContains(String name){`
boolean playRingContains=false;
playRing.current=playRing.root;
do{
if(playRing.current.name.equals(name)){
playRingContains=true;
System.out.println("in check");
}
playRing.current=playRing.current.nextNode;
}while(playRing.current!=playRing.root);
return playRingContains;
}