2018-09-30 23:01:58 +01:00
---
id: 587d8251367417b2b2512c64
title: Search within a Linked List
challengeType: 1
2019-08-05 09:17:33 -07:00
forumTopicId: 301715
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
Let's add a few more useful methods to our linked list class. Wouldn't it be useful if we could tell if our list was empty or not, as with our < code > Stack< / code > and < code > Queue< / code > classes?
We should also be able to find specific elements in our linked list. Traversing through data structures is something you'll want to get a lot of practice with! Let's create an < code > indexOf< / code > method that takes an < code > element< / code > as an argument, and returns that element's < code > index< / code > in the linked list. If the element is not found in the linked list, return < code > -1< / code > .
Let's also implement a method that does the opposite: an < code > elementAt< / code > method that takes an < code > index< / code > as an argument and returns the < code > element< / code > at the given < code > index< / code > . If no < code > element< / code > is found, return < code > undefined< / code > .
< / section >
## Instructions
< section id = 'instructions' >
Write an < code > isEmpty< / code > method that checks if the linked list is empty, an < code > indexOf< / code > method that returns the < code > index< / code > of a given element, and an < code > elementAt< / code > that returns an < code > element< / code > at a given < code > index.
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
2020-03-21 07:30:14 -07:00
- text: Your < code > LinkedList</ code > class should have an < code > isEmpty</ code > method.
testString: assert((function(){var test = new LinkedList(); return (typeof test.isEmpty === 'function')}()));
- text: Your < code > isEmpty</ code > method should return < code > false</ code > when there is at least one element in linked list.
testString: assert((function(){var test = new LinkedList(); test.add('cat'); test.add('dog'); test.add('kitten'); return test.isEmpty() === false}()));
- text: Your < code > isEmpty</ code > method should return < code > true</ code > when there are no elements in linked list.
testString: assert((function(){var test = new LinkedList(); return test.isEmpty() === true}()));
- text: Your < code > LinkedList</ code > class should have an < code > indexOf</ code > method.
2019-07-24 23:56:32 -07:00
testString: assert((function(){var test = new LinkedList(); return (typeof test.indexOf === 'function')}()));
2020-03-21 07:30:14 -07:00
- text: Your < code > indexOf</ code > method should return the index of a given element found in linked list.
testString: assert((function(){var test = new LinkedList(); test.add('cat'); test.add('dog'); test.add('kitten'); return test.indexOf('cat') === 0}()));
- text: Your < code > indexOf</ code > method should return < code > -1</ code > if the given element is not found in linked list
testString: assert((function(){var test = new LinkedList(); test.add('cat'); test.add('dog'); test.add('kitten'); return test.indexOf('pony') === -1}()));
- text: Your < code > LinkedList</ code > class should have an < code > elementAt</ code > method.
2019-07-24 23:56:32 -07:00
testString: assert((function(){var test = new LinkedList(); return (typeof test.elementAt === 'function')}()));
2020-03-21 07:30:14 -07:00
- text: Your < code > elementAt</ code > method should return the element found at a given index in linked list.
2019-07-24 23:56:32 -07:00
testString: assert((function(){var test = new LinkedList(); test.add('cat'); test.add('dog'); test.add('kitten'); return test.elementAt(1) === 'dog'}()));
2020-03-21 07:30:14 -07:00
- text: Your < code > elementAt</ code > method should return < code > undefined</ code > if the given element is not found at a given index in linked list.
testString: assert((function(){var test = new LinkedList(); test.add('cat'); test.add('dog'); test.add('kitten'); return test.elementAt(5) === undefined}()));
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
2018-10-08 01:01:53 +01:00
function LinkedList() {
var length = 0;
var head = null;
2018-09-30 23:01:58 +01:00
2020-09-15 12:31:21 -07:00
var Node = function(element){
2018-10-08 01:01:53 +01:00
this.element = element;
this.next = null;
};
2018-09-30 23:01:58 +01:00
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 {
2020-07-08 17:58:15 -04:00
var currentNode = head;
2018-09-30 23:01:58 +01:00
2020-07-08 17:58:15 -04:00
while(currentNode.next){
currentNode = currentNode.next;
}
2018-09-30 23:01:58 +01:00
2020-07-08 17:58:15 -04:00
currentNode.next = node;
2018-09-30 23:01:58 +01:00
}
length++;
2018-10-08 01:01:53 +01:00
};
2018-09-30 23:01:58 +01:00
this.remove = function(element){
var currentNode = head;
var previousNode;
if(currentNode.element === element){
2020-07-08 17:58:15 -04:00
head = currentNode.next;
2018-09-30 23:01:58 +01:00
} else {
2020-07-08 17:58:15 -04:00
while(currentNode.element !== element) {
previousNode = currentNode;
currentNode = currentNode.next;
}
2018-09-30 23:01:58 +01:00
2020-07-08 17:58:15 -04:00
previousNode.next = currentNode.next;
2018-09-30 23:01:58 +01:00
}
length --;
};
// Only change code below this line
// Only change code above this line
}
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
2020-03-21 07:30:14 -07:00
function LinkedList() {
var length = 0;
var head = null;
2020-09-15 12:31:21 -07:00
var Node = function(element){
2020-03-21 07:30:14 -07:00
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.remove = function(element){
var currentNode = head;
var previousNode;
if(currentNode.element === element){
head = currentNode.next;
} else {
while(currentNode.element !== element) {
previousNode = currentNode;
currentNode = currentNode.next;
}
previousNode.next = currentNode.next;
}
length --;
};
this.indexOf = function(element) {
if (head === null) return -1
let current = head;
let index = 0;
while (current.element !== element & & current.next !== null) {
current = current.next;
index++
}
if (current.element !== element & & current.next === null) {
return -1
}
return index;
}
this.elementAt = function(index) {
if (head === null) return undefined;
let current = head;
let currentIndex = 0;
while (currentIndex !== index & & current.next !== null) {
current = current.next;
currentIndex++
}
if (currentIndex !== index & & current.next === null) {
return undefined;
}
return current.element;
}
this.isEmpty = function() {
return length === 0;
}
}
2018-09-30 23:01:58 +01:00
```
2019-07-18 08:24:12 -07:00
2018-09-30 23:01:58 +01:00
< / section >