Doubly Linked-List Data Structures & Algorithms #16

Categories
Data Structure & Algorithm

Hey ! I think it’s time to look at another type of Linked-list structure called Doubly linked-list. remember we said singly link list is a linear data structure that has a node containing a Value(Data) and the next pointer that keeps track on the next node it’s connected to. in the other hand Doubly linked […]

Merge Sort Data Structures & Algorithms #11

Categories
Data Structure & Algorithm

Hi there, In the previous last three sections we started having a look at Sorting Algorithms and this should be our 4th sorting Algorithm. Merge sort in the other is one the fastest out there much more faster than the already discussed Sorting Algorithms ie. bubble, selection & insertions Sort where we have to iterate […]

Selection Sort Data Structures & Algorithms #9

Categories
Data Structure & Algorithm

Hey there. In this post i will share with you my little understanding of another Sorting Algorithm in Data Structures and Algorithm. in the last section i spoke about Bubble Sort which loops through the elements one by one comparing it to it’s nearest element and sorting it accordingly. remember we said swapping is going […]

Bubble Sort Data Structures & Algorithms #8

Categories
Data Structure & Algorithm

sorting Algorithms are very essential in any programming languages, some are inbuilt so you don’t have to worry yourself using them, the case like JavaScript you can just use data.sort() to get a result. so then why the hell do you need to know how the sorting actually works if you have them inbuilt into JavaScript […]

Linear & Binary Search Algorithms DSA #7

Categories
Data Structure & Algorithm

Searching Algorithms as the names indicates are used to searching records or information from a give data set. here today i would love to talk about the two of such algorithms which are Linear & Binary Search Algorithms. Linear Search Algorithms  A Linear search algorithm is nothing special but a loop to find a particular […]