Linked List Data Structure With Javascript
I'm trying to figure out the linked list data structure using Javascript. But there is a part that I'm not able to understand. function LinkedList() { var Node = function(element
Solution 1:
If you want to create the link list you can use the below algorithm:-
var linkedList = function(){
this.head=null;
this.tail=null;
this.size=0;
}
linkedList.prototype.add=function(obj){
if(!this.head){
this.head=obj;
this.tail=obj;
this.size++;
return
}
this.tail.next = obj;
this.tail=obj;
this.size++;
}
Post a Comment for "Linked List Data Structure With Javascript"