Assignemnt 4

by Juan Alban Franco

HTML

<!-
- list are abstract data types
- Implmementation: 
   var List = new function() { 
    this.head = null;
    this.content = null;
    this.id = null;
    this.next = null; -- this is a pointer to the next node in the list. }
    
    
    
double linked list

var List = function () {
this.ID = null;
this.content = null ; 
this.next = null;
this.last = null;

}
-->



<html>
<head>
<body>
<script>

function LinkedList() {
this.head = null;
}

LinkedList.prototype.add = function(data)
{

	var node = {value: data, next:null}
  



}








</script>












</body>
</head>
</html>