Core Java

Top 20 Searching and Sorting Algorithms Interview Questions for Programmers

Hello All, If you are preparing for Programming job interviews or looking for a new job then you know that it’s not an easy process. You got to be lucky to get the call and make to the first round of interview at any stage of your career but it is even more difficult at the beginner level when you are searching for your first job. That’s why you can’t just take your chance lightly. You got to be prepared to grab that chance and for that, you must know that is expected from you on the interview.

What is asked, what topics should you prepare, etc? I have blogged a lot about what you can find helpful articles in this blog but to recap let me tell you that apart from data structure questions, System Design Questions, and Programming language specific questions like Java or Scala, most of the programming job interviews also ask algorithm based questions.

These are based upon common searching and sorting algorithms like
binary search, graph algorithms, etc,. It’s important that you practice these Algorithm based questions because even though they seem obvious and easy, sometimes they become tricky to solve in the actual interview, especially if you have never coded them by yourself.

Having practiced them before not only makes you familiar with them but also gives you more confidence in explaining the solution to the interviewer, which plays a very important role in your selection. It also makes you ready for any twisted questions and alternative problems like Interviewers often like to ask you to solve a particular coding problem using Recursion or Iteration.

Sometime, if you use a data structure like the one I have used in finding duplicate characters on String, they will ask you to solve that problem without using Set data structure. That’s just some common example and that’s why practice matters a lot.

20+ Searching and Sorting Algorithms Questions from Coding Interviews

Anyway, here is some of the frequently asked Searching and Sorting Algorithms questions from Interviews:

1. Can you implement a Binary Search Algorithm? (solution)

It’s easy, binary search is a divide and conquers algorithm, where the problem is divided into sub-problem and those are solved. It’s a search algorithm so it is used to find things like a number in an integer array or an item in a catalog.

The easiest way to implement a binary search algorithm is by using Recursion, which is what the solution link contains but you should try it yourself before seeing the solution.

One of the worth noting this is that the input must be sorted, I mean you can only implement binary search in a sorted array.

2. Write a program to implement Linear search Algorithm? (solution)

It is even easier than binary search, all you need to do is go through all elements in the array using a for loop or recursive method and compare each element with the one you want to search. when an element matches you either return index or true/false depending upon your requirement.

For example, if you are writing a contains() method you can return true or false to indicate whether an element is present in the array or not. Since you need to scan the whole array to find the element, the time complexity of this algorithm is O(n).

3. Can you implement a Binary search Algorithm without recursion? (solution)

You might know that you can replace a recursive algorithm to an iterative one by using a loop or sometimes a stack. For binary search also you can do this, just divide the array and compare the middle element until you find the target element or there is no more element into an array. If the target element is greater than middle than you got to move towards the right, or otherwise towards left.

Sorting Algorithms

4. Write Code to implement Level Order Search in a Binary Tree? (solution)

In level order search you first visit sibling nodes than going down into the next level. You can use a Queue to implement level order search in a binary tree.If you want to learn more, you can check any of thesefree data structure and algorithms courses on freeCodeCamp.

5. Implement the Bubble sort Algorithm? (solution)

Isn’t this was the first sorting algorithm you learn? Well, I did and that’s why I remember that bubble sort is about comparing each number with every other number in an array so that after each pass the largest or smallest element bubble up to the top. I mean found it’s placed in the sorting order. This is one of the fundamental algorithms and time complexity of this is O(n ^2) which makes it unusable for a large set of numbers but it does well for a small set of numbers.

6. Difference between a stable and unstable sorting algorithm? (answer)

This one was a tricky concept which I didn’t know until long ago. I haven’t come across any practical use case of this one yet but just knowing the concept is Ok from the interview perspective. In a stable sorting algorithm, the order of the same element remains the same even after sorting but during unstable sorting algorithm, this changes. A good example is a quicksort and mergesort where former is unstable while later is a stable algorithm.

7. What is Depth First Search Algorithm for a binary tree? (solution)

It’s another popular searching algorithm which is mainly used in tree and graphs. This algorithm first visits nodes in depth before searching in the same level, that’s why the name Depth-first search algorithm. It’s tricky to implement but you can use a Stack to implement DFS or Depth-first search algorithm.

Sorting Algorithms

8. How is an iterative quicksort algorithm implemented? (solution)

Obviously without recursion:-).  If you remember, I have told you before that you can use a Stack to convert a recursive algorithm into an iterative one and that’s what you can do as well to implement Quicksort algorithm without recursion. You can further see the solution if you need more help with respect to implementation.

9. How do you implement a counting sort algorithm? (solution)

Just like we have done with other O(n) sorting algorithms like Radix sort and Bucket sort. If you don’t know Counting sort is another integer sorting algorithm for sorting a collection of objects according to keys that are small integers. It has O(n) time complexity which makes it faster than likes of
Quicksort and Mergesort for a particular set of input.  See the solution for more details.

10. How do you swap two numbers without using the third variable? (solution)

Another tricky question which is easy if you know the trick :-) Well you can swap two numbers without using a temporary or third variable if you can store the sum of numbers in one number and then minus the sum with other number something like

a = 3;

b = 5;

a = a + b; //8

b = a — b; // 3

a = a — b; //5

now you have a = 5 and b = 3, so numbers are swapped without using a third or temp variable.

11. How is a radix sort algorithm implemented? (solution)

This is another integer sorting algorithm with O(n) time complexity. As per Wikipedia, Radix sort is a non-comparative sorting algorithm that sorts data with integer keys by grouping keys by the individual digits which share the same significant position and value. You can further see the solution for implementation details.

12. How do you implement an insertion sort algorithm? (solution)

Have you ever arranged the deck of cards, or maybe shirts in your cupboard? What is common between those two things? Well, you put the next card or shirt into their proper position, or, should I say you insert the next element in its proper position. That’s the insertion sort for you.

13. Write Algorithm to check if two rectangles overlap with each other? (solution)

This is a tricky Algorithm question but if you have to listen to your teacher in your 2D maths class then you can solve this problem. There is another trick, check for all the conditions when rectangle will not overlap and if any condition is false it means both rectangles are overlapping with each other. For example, if the upper side of one rectangle is below the lower side of other rectangles then they won’t overlap as they are vertically aligned.

14. How is a merge sort algorithm implemented? (solution)

Similar to Quicksort, merge sort is also divided and conquer algorithm i.e. you keep divides the array until you can sort the smallest of the array like an array with one or zero elements. Once you sort small arrays you merge them to get the final result.

The only difference between Quicksort and Mergesort is that mergesort is stable while Quicksort is not-stable. This means equal elements retain their spot before and after sorting.

Another worth noting difference is that even though both have O(NLogN) average time, it’s better to use quicksort than mergesort because Quicksort takes less time for the same number of input, the constant factor is less in Quicksort than merge sort.

Sorting Algorithms

15. How do you implement a bucket sort algorithm? (solution)

The Bucket sort is another awesome algorithm which can sort an array without even comparing elements. It’s known as non-comparison sorting algorithm and can give O(n) performance for selected input.

16. Write Algorithms to Check if Two String are Anagram (Solution)

An anagram is something where length and character matches but not the order e.g. Army and Mary, both have the same number of characters. One trick is to solve this problem is to sort the character and check if they are the same or not.

17. Implement the QuickSort Algorithm in your Favorite Programing language? (solution)

This one is a very easy sorting algorithm, but only if you have practiced, if not then you may lose your way. Remember, Quicksort is a divide and conquer algorithm which means you keep dividing array, also known as partitioning. Then you solve the problem at the smallest level, also known as a base case like when your array contains just one or zero elements.

18. How to check if two String is rotations of each other? (solution)

There is a simple trick to solve this problem, just concatenate the String with itself and check if the rotation exists there. If the concatenated String contains rotation then given String is a rotation of former.

19, Difference between Comparison and Non-Comparison Sorting Algorithms? (answer)

As the name suggests, in comparison based sorting algorithms you must compare elements to sort like quicksort, but in non-comparison based sorting algorithm like Counting sort, you can sort elements without comparing it. Surprised? Well yes, then I suggest you check out this course to learn more about O(n) sorting algorithms like Radix Sort, Counting Sort, and Bucket Sort.

20. Implement Sieve of Eratosthenes Algorithms for Prime Number? (solution)

This is one of the tough algorithms to implement especially if you don’t remember it :-) Sometime interviewer gives you the explanation but other times you need to remember it.

Now You’re Ready for the Coding Interview

These are some of the most common questions outside of data structure and algorithms that help you to do really well in your interview.

I have also shared a lot of these questions on myblog, so if you are really interested, you can always go there and search for them.

These common coding,data structure, and algorithms questions are the ones you need to know to successfully interview with any company, big or small, for any level of programming job.

If you are looking for a programming or software development job in 2019, you can start your preparation with this list of coding questions.

This list provides good topics to prepare and also helps assess your preparation to find out your areas of strength and weakness.

Good knowledge of data structure and algorithms is important for success in coding interviews and that’s where you should focus most of your attention.

Closing Notes

Thanks, You made it to the end of the article … Good luck with your programming interview! It’s certainly not going to be easy, but by following this searching and sorting algorithm questions, you are one step closer than others.

If you like this article, then please share with your friends and colleagues, and don’t forget to follow javarevisited on Twitter andjavinpaul as well!

Published on Java Code Geeks with permission by Javin Paul, partner at our JCG program. See the original article here: Top 20 Searching and Sorting Algorithms Interview Questions for Programmers

Opinions expressed by Java Code Geeks contributors are their own.

Javin Paul

I have been working in Java, FIX Tutorial and Tibco RV messaging technology from past 7 years. I am interested in writing and meeting people, reading and learning about new subjects.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button