Skip to content

Commit

Permalink
updated list hrierachy in java
Browse files Browse the repository at this point in the history
  • Loading branch information
GauravWalia19 committed Dec 28, 2018
1 parent cf8881b commit 59c30da
Show file tree
Hide file tree
Showing 33 changed files with 8 additions and 15 deletions.
File renamed without changes.
3 changes: 0 additions & 3 deletions Java/Data-Structures/LISTS/Double-Linked-List/.gitignore

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,6 @@ else if(obj.equals(current.getSample()))
}
return current;
}
//removing duplicates
// public void removeDuplicates()
// {
// node current = head;
// }
//method for searching in the list
public boolean search(sample obj)
{
Expand Down
15 changes: 8 additions & 7 deletions Java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,22 @@
#### LISTS

* SINGLE
* [Single Linked List](Data-Structures/LISTS/SINGLE/LinkedList.java)
* [Single Linked List using object data](Data-Structures/LISTS/Single-Linked-List/singleLinkedList.java)
* [Single Linked List](Data-Structures/LISTS/SINGLE/STANDARD/LinkedList.java)
* [Single Linked List using object data](Data-Structures/LISTS/SINGLE/Single-Using-Object/singleLinkedList.java)
* DOUBLE
* [Double Linked List](Data-Structures/LISTS/DOUBLE/DoublyLinkedList.java)
* [Double Linked List using object data](Data-Structures/LISTS/Double-Linked-List/DoubleLinkedList.java)
* [Double Linked List](Data-Structures/LISTS/DOUBLE/STANDARD/DoublyLinkedList.java)
* [Double Linked List using object data](Data-Structures/LISTS/DOUBLE/Double-Using-Object/DoubleLinkedList.java)
* CIRCULAR
* [Circular Linked List (using tail node)](Data-Structures/LISTS/CIRCULAR/CircularLinkedList.java)
* [Circular Linked List (using tail node)](Data-Structures/LISTS/CIRCULAR/STANDARD/CircularLinkedList.java)
* MEMORY EFFICIENT DOUBLE LINKED LIST
* UNROLLED LINKED LIST
* SKIP LIST
* INBUILT LISTS
* [LINKED LIST]
* [ARRAYLIST](Data-Structures/LISTS/arrayList.java)
* [VECTORS](Data-Structures/LISTS/vectors.java)
* [ARRAYLIST](Data-Structures/LISTS/INBUILT/arrayList.java)
* [VECTORS](Data-Structures/LISTS/INBUILT/vectors.java)
* MISC
* Find the nth node from the end

#### STACKS

Expand Down

0 comments on commit 59c30da

Please sign in to comment.