Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
LinkedList.prototype.insertAfter = function(searchValue, nodeToInsert) {
|
||||
if (this._value == searchValue) {
|
||||
nodeToInsert.next(this.next());
|
||||
this.next(nodeToInsert);
|
||||
}
|
||||
else if (this.next() == null)
|
||||
throw new Error(0, "value '" + searchValue + "' not found in linked list.")
|
||||
else
|
||||
this.next().insertAfter(searchValue, nodeToInsert);
|
||||
}
|
||||
var list = createLinkedListFromArray(['A','B']);
|
||||
list.insertAfter('A', new LinkedList('C', null));
|
||||
Loading…
Add table
Add a link
Reference in a new issue