February 2020
Beginner to intermediate
616 pages
15h 16m
English
In this recipe, we will learn how to create a singly linked list comprising integer elements, and then we will learn how to sort this linked list in ascending order.
A singly linked list consists of several nodes that are connected through pointers. A node of a singly linked list might appear as follows:

As you can see, a node of a singly linked list is a structure composed of two parts:
Read now
Unlock full access