2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: 587d8251367417b2b2512c64
|
2020-12-16 00:37:30 -07:00
|
|
|
title: 在链接列表中搜索
|
2018-10-10 18:03:03 -04:00
|
|
|
challengeType: 1
|
|
|
|
videoUrl: ''
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: search-within-a-linked-list
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --description--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
让我们为链表类添加一些更有用的方法。如果我们可以判断我们的列表是否为空,那么它是否有用,就像我们的`Stack`和`Queue`类一样?我们还应该能够在链表中找到特定元素。遍历数据结构是你想要进行大量练习的东西!让我们创建一个`indexOf`方法,该方法将`element`作为参数,并在链表中返回该元素的`index` 。如果在链接列表中找不到该元素,则返回`-1` 。让我们实现一个相反的方法:一个`elementAt`方法,它将`index`作为参数并返回给定`index`处的`element` 。如果未找到任何`element` ,则返回`undefined` 。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --instructions--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
编写一个检查链表是否为空的`isEmpty`方法,返回给定元素`index`的`indexOf`方法,以及返回给定`index.`处`element`的`elementAt` `index.`
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --hints--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
您的`LinkedList`类应该有一个`indexOf`方法。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
(function () {
|
|
|
|
var test = new LinkedList();
|
|
|
|
return typeof test.indexOf === 'function';
|
|
|
|
})()
|
|
|
|
);
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
您的`LinkedList`类应该有一个`elementAt`方法。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
assert(
|
|
|
|
(function () {
|
|
|
|
var test = new LinkedList();
|
|
|
|
return typeof test.elementAt === 'function';
|
|
|
|
})()
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
您的`size`方法应返回链表的长度
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
(function () {
|
|
|
|
var test = new LinkedList();
|
|
|
|
test.add('cat');
|
|
|
|
test.add('dog');
|
|
|
|
test.add('kitten');
|
|
|
|
return test.size() === 3;
|
|
|
|
})()
|
|
|
|
);
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
`indexOf`方法应该返回给定元素的索引。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
(function () {
|
|
|
|
var test = new LinkedList();
|
|
|
|
test.add('cat');
|
|
|
|
test.add('dog');
|
|
|
|
test.add('kitten');
|
|
|
|
return test.indexOf('kitten') === 2;
|
|
|
|
})()
|
|
|
|
);
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
您的`elementAt`方法应该返回给定索引处的元素。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
assert(
|
|
|
|
(function () {
|
|
|
|
var test = new LinkedList();
|
|
|
|
test.add('cat');
|
|
|
|
test.add('dog');
|
|
|
|
test.add('kitten');
|
|
|
|
return test.elementAt(1) === 'dog';
|
|
|
|
})()
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
# --seed--
|
|
|
|
|
|
|
|
## --seed-contents--
|
|
|
|
|
|
|
|
```js
|
|
|
|
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.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 --;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Only change code below this line
|
|
|
|
|
|
|
|
// Only change code above this line
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --solutions--
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
```js
|
|
|
|
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.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|