Skip to content

Instantly share code, notes, and snippets.

@Mahdhir
Created May 2, 2020 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mahdhir/4c7e6da9fa99d26e9f523f9ea076f578 to your computer and use it in GitHub Desktop.
Save Mahdhir/4c7e6da9fa99d26e9f523f9ea076f578 to your computer and use it in GitHub Desktop.
Node search(int key){
Node temp = head;
while(temp != null){
if(temp.key == key){
return temp;
}
temp = temp.next;
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment