Skip to main content

--description--

Let's create a addAt(index,element) method that adds an element at a given index. Just like how we remove elements at a given index, we need to keep track of the currentIndex as we traverse the linked list. When the currentIndex matches the given index, we would need to reassign the previous node's next property to reference the new added node. And the new node should reference the next node in the currentIndex. Returning to the conga line example, a new person wants to join the line, but he wants to join in the middle. You are in the middle of the line, so you take your hands off of the person ahead of you. The new person walks over and puts his hands on the person you once had hands on, and you now have your hands on the new person.

--instructions--

Create an addAt(index,element) method that adds an element at a given index. Return false if an element could not be added. Note: Remember to check if the given index is a negative or is longer than the length of the linked list.

--hints--

Your addAt method should reassign head to the new node when the given index is 0.

assert(
(function () {
var test = new LinkedList();
test.add('cat');
test.add('dog');
test.addAt(0, 'fish');
return test.head().element === 'fish' && test.head().next.element === 'cat';
})()
);

Your addAt method should increase the length of the linked list by one for each new node added to the linked list.

assert(
(function () {
var test = new LinkedList();
test.add('cat');
test.add('dog');
test.addAt(0, 'cat');
return test.size() === 3;
})()
);

Your addAt method should return false if a node was unable to be added.

assert(
(function () {
var test = new LinkedList();
test.add('cat');
test.add('dog');
return test.addAt(4, 'cat') === false;
})()
);

--seed--

--seed-contents--

function LinkedList() {
var length = 0;
var head = null;

var Node = function(element) {
this.element = element;
this.next = null;
};

this.size = function() {
return length;
};

this.head = function() {
return head;
};

this.add = function(element) {
var node = new Node(element);
if (head === null) {
head = node;
} else {
var currentNode = head;

while (currentNode.next) {
currentNode = currentNode.next;
}

currentNode.next = node;
}
length++;
};

// Only change code below this line

// Only change code above this line
}

--solutions--

function LinkedList() {
var length = 0;
var head = null;

var Node = function(element){
this.element = element;
this.next = null;
};

this.size = function(){
return length;
};

this.head = function(){
return head;
};

this.add = function(element){
var node = new Node(element);
if (head === null){
head = node;
} else {
var currentNode = head;

while (currentNode.next) {
currentNode = currentNode.next;
}

currentNode.next = node;
}
length++;
};
this.addAt = function (index, element) {
if (index > length || index < 0) {
return false;
}
var newNode = new Node(element);
var currentNode = head;
if (index === 0) {
head = newNode;
} else {
var previousNode = null;
var i = 0;
while (currentNode && i < index) {
previousNode = currentNode;
currentNode = currentNode.next;
i++;
}
previousNode.next = newNode;
}
newNode.next = currentNode;
length++;
}
}