


How to insert and output nodes in python singly linked list? (code example)
How to insert and output nodes in python singly linked list? The following article will help you understand what a singly linked list is and how to perform some very basic operations on a singly linked list, such as insertion and output. I hope it will be helpful to you.
What is a singly linked list?
First of all, before understanding the singly linked list, we must understand what a node is.
Node is the building block of the linked list, which consists of two parts:
1. Data part: used to contain data
2. Address part: used to point to the next Pointer to the node location.
In a singly linked list, the address portion of each node contains information about the location of the next node; this forms a series of chains or links. The first node of the linked list is tracked by the head pointer; the last node points to None.
Let’s look at the diagram below to understand this better:
Note: In the above diagram, the last element 1 points to None. Even though these nodes are drawn contiguously with each other, they may or may not actually be in contiguous memory locations.
How to insert and output nodes in a singly linked list?
1. Create a singly linked list
First, you must create a node to create a singly linked list. To do this, we create a Node class using data and nextNode properties. As mentioned before, the data attribute will contain the data and nextNode will simply point to the next node in the linked list. We set the default value for nextNode to be None. You can use getter and setter methods to do this.
Now that the Node class has been created, it is time to create the LinkedList class. This has only one attribute, head. By default this will point to "None". If the header points to "None", it means that the linked list is empty. To keep track of the number of nodes in the linked list, we can add a size attribute to the LinkedList class and default it to 0.
2. Insert node
This is the method of LinkedList class. We can insert a new node anywhere in the linked list, but to keep the coding simple and efficient, we will always add new nodes to the beginning of the linked list; in other words, the head will always point to the most recently added node.
If we add a new node to the end of the list, we need to perform extra work to find the end of the list and then add it. This is a wasteful operation. However, this can be done if you maintain another pointer, let's call it tail pointer, pointing to the last node.
Below we introduce the former method, that is, how to insert a node at the beginning of the linked list.
Suppose we need to add 7 to the linked list, we need to perform the following steps:
● Create a node object, where 7 represents data, and the next node points to the head node
● Point the head pointer to this new node
Finally, increase the size attribute by 1. If the insertion is successful, return True. This is a good habit; this way, the user knows what happened.
3. Output node
This is the method of LinkedList class. To print the data in all nodes in the linked list, we need to iterate through one node at a time and print the data portion of each node.
Implementation code:
class Node: def __init__(self,data,nextNode=None): self.data = data self.nextNode = nextNode def getData(self): return self.data def setData(self,val): self.data = val def getNextNode(self): return self.nextNode def setNextNode(self,val): self.nextNode = val class LinkedList: def __init__(self,head = None): self.head = head self.size = 0 def getSize(self): return self.size def addNode(self,data): newNode = Node(data,self.head) self.head = newNode self.size+=1 return True def printNode(self): curr = self.head while curr: print(curr.data) curr = curr.getNextNode() myList = LinkedList() print("Inserting") print(myList.addNode(5)) print(myList.addNode(15)) print(myList.addNode(25)) print("Printing") myList.printNode() print("Size") print(myList.getSize())
What are the advantages and disadvantages of singly linked lists?
Advantages:
● It is a dynamic data structure in which insertion and deletion are simple. Because we don't need to move the element. Just updating the next pointer will do the job.
● Stack and queue data structures can be easily implemented using linked lists.
Disadvantages
● The next pointer occupies additional memory.
●Cannot be accessed randomly. The linked list must be traversed from the beginning to reach a specific node.
The above is the entire content of this article, I hope it will be helpful to everyone's study. For more exciting content, you can pay attention to the relevant tutorial columns of the PHP Chinese website! ! !
The above is the detailed content of How to insert and output nodes in python singly linked list? (code example). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



HadiDB: A lightweight, high-level scalable Python database HadiDB (hadidb) is a lightweight database written in Python, with a high level of scalability. Install HadiDB using pip installation: pipinstallhadidb User Management Create user: createuser() method to create a new user. The authentication() method authenticates the user's identity. fromhadidb.operationimportuseruser_obj=user("admin","admin")user_obj.

It is impossible to view MongoDB password directly through Navicat because it is stored as hash values. How to retrieve lost passwords: 1. Reset passwords; 2. Check configuration files (may contain hash values); 3. Check codes (may hardcode passwords).

You can learn basic programming concepts and skills of Python within 2 hours. 1. Learn variables and data types, 2. Master control flow (conditional statements and loops), 3. Understand the definition and use of functions, 4. Quickly get started with Python programming through simple examples and code snippets.

Python is widely used in the fields of web development, data science, machine learning, automation and scripting. 1) In web development, Django and Flask frameworks simplify the development process. 2) In the fields of data science and machine learning, NumPy, Pandas, Scikit-learn and TensorFlow libraries provide strong support. 3) In terms of automation and scripting, Python is suitable for tasks such as automated testing and system management.

MySQL database performance optimization guide In resource-intensive applications, MySQL database plays a crucial role and is responsible for managing massive transactions. However, as the scale of application expands, database performance bottlenecks often become a constraint. This article will explore a series of effective MySQL performance optimization strategies to ensure that your application remains efficient and responsive under high loads. We will combine actual cases to explain in-depth key technologies such as indexing, query optimization, database design and caching. 1. Database architecture design and optimized database architecture is the cornerstone of MySQL performance optimization. Here are some core principles: Selecting the right data type and selecting the smallest data type that meets the needs can not only save storage space, but also improve data processing speed.

As a data professional, you need to process large amounts of data from various sources. This can pose challenges to data management and analysis. Fortunately, two AWS services can help: AWS Glue and Amazon Athena.

The steps to start a Redis server include: Install Redis according to the operating system. Start the Redis service via redis-server (Linux/macOS) or redis-server.exe (Windows). Use the redis-cli ping (Linux/macOS) or redis-cli.exe ping (Windows) command to check the service status. Use a Redis client, such as redis-cli, Python, or Node.js, to access the server.

To read a queue from Redis, you need to get the queue name, read the elements using the LPOP command, and process the empty queue. The specific steps are as follows: Get the queue name: name it with the prefix of "queue:" such as "queue:my-queue". Use the LPOP command: Eject the element from the head of the queue and return its value, such as LPOP queue:my-queue. Processing empty queues: If the queue is empty, LPOP returns nil, and you can check whether the queue exists before reading the element.
