This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Javascript implementation of Doubly Linked list | |
* | |
* Dinesh | |
* | |
* (More to come) (Add more error handling scenarios) | |
*/ | |
// Global object (namespace) | |
DS = {}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Singly Linked list implementation in Java | |
* | |
* Copy the 3 classes in DList.java, DLinkedList.java and Main.java in order to run the implementation | |
* | |
* Dinesh | |
* | |
* ____________ _____________ ______________ | |
* |item "test1"| | item "test2"| | item "test3" | | |
* | next |-------->| next |----->| next |------>null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Singly Linked list implementation in Java | |
* | |
* Copy the 3 classes in Node.java, LinkedList.java and Main.java in order to run the implementation | |
* | |
* Dinesh | |
* | |
* ____________ _____________ ______________ | |
* |item "test1"| | item "test2"| | item "test3" | | |
* | next |-------->| next |----->| next |------>null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**************************************************************** | |
* Singly Linked list implementation (Node as Objects) using javascript | |
* | |
* - Dins | |
*****************************************************************/ | |
// Global Object DS - Data Structure | |
var DS = {}; | |
NewerOlder