ES2015 Class Syntax Data Structures #14
Categories
Data Structure & Algorithm

Hey.. So far we’ve only been talking about various Algorithms like Sorting and Searching all these while. Today we will take a different direction to talk about Data Structures which are how Data is Presented, Stored or Partitioned in a storage memory before any algorithm can run on them. the assembly of the above is […]

Quick Sort Data Structures & Algorithms #12
Categories
Data Structure & Algorithm

Hi there, Today is Quick Sort, one of the most talk about in sorting data structures. Quick Sort leverages on the Divide and conquer strategy by allowing elements of a list to sort themselves and checking which elements stand in front or behind. Quick Sort seems to be a little tricky, one of the fastest but […]

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

Insertion Sort Data Structures & Algorithms #10
Categories
Data Structure & Algorithm

Hello 🙂 I hope you’re keeping well ? In today’s post I am going to talk a bit about our third sort which is Insertion Sort. actually one of the easiest sorting we have out there. with insertion sort the point to note here is that the in-place first element of the collection is already sorted so […]

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

Recursions Data structures & Algorithms #6
Categories
Data Structure & Algorithm

Hello there. Let’s have a look at what Recursion is supposed to be in Data Structures & Algorithm. It is an undeniable fact that we can’t talk about DSA without mentioning recursion along the way, recursion forms most part of solving many of DSA problems. now let’s take a look at Recursion. What is Recursion […]

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