Preface: To store multiple elements, arrays are the most commonly used data structure, but arrays also have many disadvantages:
So to store multiple elements, another option is a linked list. Unlike an array, the elements in a linked list do not have to be continuous space in memory. Each element of a linked list has a node that stores the element itself and a reference to the next element.
Linked lists have some disadvantages compared to arrays:
1. What is a singly linked listSo what exactly is a singly linked list? It is like a train, the locomotive is connected to a node, there are passengers on the node, and this node is connected to the next node, and so on, as shown below: Our linked list structure is: Now that we understand the intuitive linked list, let's encapsulate the code for the singly linked list. 2. Encapsulation of a singly linked list First, we encapsulate a As shown below: function LinkedList(){ this.length = 0; this.head = null; //Internal class function Node(data){ this.data = data; this.next = null; } } 3. Common operations of singly linked listsThen add the commonly used operations of singly linked lists. The main ones are:
Next, we will implement them one by one. 1. append(element) method-----add an item to the end of the listBecause there are two possible situations for adding data to the end of a linked list:
So we need to make a judgment. If the linked list is empty, directly point the pointer of the head node to the new node. LinkedList.prototype.append = function(data){ var newNode = new Node(data); // Determine whether the linked list is empty // 1. If it is empty if (this.length === 0) { this.head = newNode; }else{ //Not empty var current = this.head; if(current.next){ current = current.next; } current.next = newNode; } this.length += 1; } 2. toString method ----- output the value of the element This is relatively simple. The main thing is to get each element. Because getting any element of the linked list must start from the first node, we can start from the head node, loop through each node, take out LinkedList.prototype.toString = function(){ var current = this.head; var ListStr = ''; while(current){ ListStr += current.data + ' '; current = current.next; } return ListStr; } Verification: Create several new nodes and print var list = new LinkedList(); list.append('a'); list.append('b'); list.append('c'); list.append('d'); list.append('e'); alert(list); The print result is: 3. Insert method ----- insert an item into a specific position in the list To implement the method of inserting data at any position, first determine whether the insertion position is out of bounds, and then divide it into two cases if it is not out of bounds. If it is inserted into the first position, it means that the newly added node is the head, then the original head node needs to be used as the next of the new node, and then let the head point to the new node. If you insert it to other positions, you need to find the node position through a loop first, and save the previous node and the next node during the loop. After finding the correct position, point The code is as follows: LinkedList.prototype.insert = function(position,data){ if(position<0 || position >this.length){ return false; } var newNode = new Node(data); var index = 0; if(position == 0){ newNode.next = this.head; this.head = newNode; }else{ while(index++ < position){ var current = this.head; var previous = null; previous = current; current = current.next; } newNode.next = current; previous.next = newNode; } this.length += 1; return true; } Verification: Insert xl in the first position and wh in the second position list.insert(1,'xl') list.insert(2,'wh') alert(list) 4. Get method-----Get the element at the corresponding position This method is relatively simple. First, it checks whether LinkedList.prototype.get = function(position,data){ var current = this.head; var index = 0; if(position < 0 || position >= this.length){ return null; }else{ while(index<position){ current = current.next; index++; } return current.data; } } Verification: Get the element at the third position: alert( list.get(3)); 5. indexOf() method ----- returns the index of an element in a listFirst determine whether the position of the element being searched exists. If not, return -1. If it exists, there are two cases. If the returned element is in the first position, the index of the first position is returned directly. If the returned element is at another position, you need to find the node position through a loop first. During this process, the index needs to be incremented by the number of traversals. After finding the position of the correct element, the printed index is the target position. LinkedList.prototype.indexOf = function(data){ var index = 0; var current = this.head; while(current){ if(current.data == data){ return index; } else{ current = current.next; index++; } } return -1; } } Verification: Get the index of c: alert(list.indexOf('c')); 6. Update method-----Modify the element at a certain position This method is very similar to the get method. It traverses backwards. When the value of LinkedList.prototype.update = function(position,ele){ if(position<0 || position>=this.length){ return false; }else{ var index = 0; var current = this.head; while(index++ <position){ current = current.next; } current.data = ele; return true; } } Verification: Change the element at position 0 to: bear list.update(0,'bear') alert(list) 7. removeAt method-----Remove an item from the specified position of the list First, determine whether the position of the deleted item is out of bounds. Then, if it is not out of bounds, give two temporary nodes LinkedList.prototype.removeAt = function(position,data){ var current = this.head; var previous = null; var index = 0; if(position<0 || position>=this.length){ return false; }else{ while(index++ <position){ previous = currrent; current = current.next; } previous.next = current.next; this.length -= 1; return true; } } } Verification: Remove the element at the third position: list.removeAt(3) alert(list) 8. Remove method - remove an item from the list First determine whether the element to be deleted is in the linked list. If not, return LinkedList.prototype.remove = function(ele){ var current = this.head; var previous = null; var index = 0; while(current.data !== ele){ previous = current; current = current.next; index++; } previous.next = current.next; } Verification: Delete the element with value xl: list.remove('xl') alert(list) 9. isEmpty method-----determine whether the linked list is empty According to LinkedList.prototype.isEmpty = function(){ return this.length == 0; } verify: alert(list.isEmpty()) 9. Size method ----- returns the number of elements contained in the linked list LinkedList.prototype.size = function(){ return this.length; } verify: alert(list.size()) This is the end of this article about JavaScript implementing single linked list process parsing. For more relevant JavaScript implementing single linked list content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: CSS3 uses transform to create a moving 2D clock
>>: How to configure the Runner container in Docker
The warehouse created using the official Docker R...
introduction In recent years, the call for TypeSc...
1. A static page means that there are only HTML ta...
Preface Samba is a free software that implements ...
introduction Our company is engaged in the resear...
First configure the project artifacts Configuring...
YSlow is a page scoring plug-in developed by Yaho...
Problem 1: Baidu Map uses tiled images (the map i...
This article shares the specific code for impleme...
1. Download the virtual machine version 15.5.1 I ...
Table of contents Concurrent scenarios Write-Writ...
Alibaba Cloud Server cannot connect to FTP FileZi...
Official Website https://cli.vuejs.org/en/guide/ ...
Recently, due to the increase in buttons in the b...
Table of contents Introduction Uses of closures C...