DEV Community

Seonyoung Chloe (she/they)
Seonyoung Chloe (she/they)

Posted on

58 : the problems in-depth

from the article : https://www.geeksforgeeks.org/why-data-structures-and-algorithms-are-important-to-learn/


There are plenty of examples you can find in your daily life. So if you think that this skill is only important to crack the interviews of product-based companies then you are totally wrong.

From the above example, we can straight forward give two reasons to Learn Data Structure and Algorithms…

  • If you want to crack the interviews and get into the product based companies

  • If you love to solve the real-world complex problems. ✔️

Do you know that under the hood all your SQL and Linux commands are algorithms and data structures?
You might not realize this, but that’s how the software works.


Data structures and algorithms play a major role in implementing software and in the hiring process as well.

A lot of students and professionals have this question that why these companies’ interviews are focused on DSA instead of language/frameworks/tools specific questions? Let us explain why it happens…

When you ask someone to make a decision for something the good one will be able to tell you “I chose to do X because it’s better than A, B in these ways.

I could have gone with C, but I felt this was a better choice because of this“.

In our daily life, we always go with that person who can complete the task in a short amount of time with efficiency and using fewer resources.

The same things happen with these companies. The problem faced by these companies is much harder and at a much larger scale.

Software developers also have to make the right decisions when it comes to solving the problems of these companies.


Knowledge of data structures like Hash Tables, Trees, Tries, Graphs, and various algorithms goes a long way in solving these problems efficiently and the interviewers are more interested in seeing how candidates use these tools to solve a problem.

Just like a car mechanic needs the right tool to fix a car and make it run properly, a programmer needs the right tool (algorithm and data structure) to make the software run properly.

So the interviewer wants to find a candidate who can apply the right set of tools to solve the given problem.


If you know the characteristics of one data structure in contrast to another you will be able to make the right decision in choosing the right data structure to solve a problem.

Engineers working in Google, Microsoft, Facebook, Amazon-like such companies are different than others and paid higher as compared to other companies…but why?

In these companies coding is just the implementation and roughly takes 20–30% of the time allotted to a project. Most of the time goes into designing things with the best and optimum algorithms to save on the company’s resources (servers, computation power, etc).

This is the main reason why interviews in these companies are focused on algorithms as they want people who can think out of the box to design algorithms that can save the company thousands of dollars. Youtube, Facebook, Twitter, Instagram, GoogleMaps all these sites have the highest number of users in the world.

To handle more users on these sites it requires more optimation to be done and that’s the reason product-based companies only hire candidates who can optimize their software as per user demand.

Example: Suppose you are working in a Facebook company. You come up with an optimal solution of a problem (like sorting a list of users from India) with time complexity of O(nLogn) instead of O(n²) and assume that n for the problem here for the company in real life scenario is 100 million (very fair assumption considering the number of users registered on facebook exceeds 1 billion). nLogn would be 800 million, while n² would be 1⁰⁷ billion.


In cost terms, you can see that the efficiency has been improved more than 1⁰⁷ times, which could be a huge saving in terms of server cost and time.

Now you might have got that companies want to hire a smart developer who can make the right decision and save company resources, time, and money.

So before you give the solution to use a Hash table instead of List to solve a specific problem think about the big scale and all the case scenarios carefully. It can generate revenue for the company or the company can lose a huge amount of money.

Have you ever scolded by your parents when you were unable to find your book or clothes in your messed up room? Definitely yes…your parents are right when they give the advice to keep everything in the right place so the next time you can get your stuff easily.


Here you need to arrange and keep everything (data) in such a structure that whenever you need to search something you get that easily and as soon as possible. This example gives a clear idea that how important it is to arrange or structure the data in real life.

Now take the example of a library. If you need to find a book on Set Theory from a library, you will go to the maths section first, then the Set Theory section.


If these books are not organized in this manner and just distributed randomly then it will be frustrating to find a specific book. So data structures refer to the way we organize information on our computer.

Computer scientists process and look for the best way we can organize the data we have, so it can be better processed based on input provided.

A lot of newbie programmers have this question that where we use all the stuff of data structure and algorithm in our daily life and how it’s useful in solving the real-world complex problem.

We need to mention that whether you are interested in getting into the top tech giant companies or not DSA still helps a lot in your day to day life. Don’t you believe us…Let’s consider some examples…

  • Facebook (Yes… we are talking about your favorite application) Can you just imagine that your friends on Facebook, friends of friends, mutual friends they all can be represented easily by Graph? Relax….sit for a couple of moments and think again…you can apply a graph to represent a friend’s connection on Facebook.

If you need to keep a deck of cards and arrange it properly how would you do that? You will throw it randomly or you will arrange the cards one over another and from a proper deck. You can use Stack here to make a proper arrangement of cards one over another.

If you need to search a word in the dictionary, what would be your approach? Do you go page by page or you open some page and if the word is not found you open a page prior/later to one opened depending upon the order of word to the current page (Binary Search).


The first two were a good example of choosing the right data structure for a real-world problem and the third one is a good example of choosing the right algorithm to solve a specific problem in less amount of time.

All the above examples give you a clear understanding that how the organization of data is really important in our day to day life.

Arranging data in a specific structure is really helpful in saving a lot of time and it becomes easier to manipulate or use them.


The same goes for the algorithm…we all want to save our time, energy, and resources. We all want to choose the best approach to solve the problems in our daily life.

We are surrounded by a lot of real-world complex problems for which no one has the solution. Observe the problems in-depth and you can help this world giving the solution which no one has given before.


Data structure and algorithms help in understanding the nature of the problem at a deeper level and thereby a better understanding of the world.

Top comments (0)