AJAnushka Joshiinloops.hashnode.dev·May 19, 2024 · 18 min readDoubly Linked listA doubly linked list (DLL) is a type of linked list where each node has a pointer to both the previous node and the next node. SNOperationDescription 1Insertion at beginningAdding the node into the linked list at beginning. 2Insertion at end...00
AJAnushka Joshiinloops.hashnode.dev·May 18, 2024 · 8 min readSingly Linked ListA singly linked list is a type of linked list where each node has just one link pointing to the next node. Linked List Operations: Traverse, Insert and Delete There are different linked list operations that let us do various tasks on linked lists. F...00
AJAnushka Joshiinloops.hashnode.dev·May 17, 2024 · 6 min readHeap SortHeap sort processes the elements by creating the min-heap or max-heap using the elements of the given array. Min-heap or max-heap represents the ordering of array in which the root element represents the minimum or maximum element of the array. Heap ...00
AJAnushka Joshiinloops.hashnode.dev·May 16, 2024 · 6 min readQuick SortThe working procedure of Quicksort is also simple. This article will be very helpful and interesting to students as they might face quicksort as a question in their examinations. So, it is important to discuss the topic. Sorting is a way of arranging...00
AJAnushka Joshiinloops.hashnode.dev·May 15, 2024 · 3 min readRadix SortIn Radix sort, we sort numbers digit by digit, starting from the least significant digit to the most significant digit. Radix sort is like sorting students' names alphabetically. There are 26 groups for the 26 letters in the alphabet. In the first pa...00