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 […]

Problem Solving Patterns Data Structures & Algorithm #5

Categories
Data Structure & Algorithm

Hello There, Hope you’re keeping well ? Today let’s talk about how to be good at Solving Data structures and Algorithm problems. If you’re like me then you will also find DSA problems as intimidating at first glance, that may even lead you to ask yourself a lot of questions as to if you’re ever […]