Unlock the complete
Logicmojo experience for FREE

1 Million +

Strong Tech Community

500 +

Questions to Practice

100 +

Expert Interview Guides

Advanced
Data Structures Algorithms & System Design(HLD+LLD)
by Logicmojo

Cracking FAANG companies interviews with a few months of preparation

Learn Advanced Data Structures, Algorithms & System Design

Online live classes from 4 to 7 months programs

Get job assistance after course completion

Download Course Brochure

Data Structure Interview Questions

Tech Giants' Data Structure Interview Questions and Answers


Logicmojo - Updated Dec 14, 2023
Data Structure Interview Questions and Answers for Coding Interview

You may be wondering what questions you'll face in your next data structure interview. Just remember that data structure interviewers aren't trying to trick you and don't expect perfection, but it's their opportunity to ascertain your knowledge before they invest in your employment. Proper preparation is always advised.

Data structures interview questions are an essential part of any programming interview, mainly one for Data Science and Java-based role. Thorough understanding and deep knowledge of data structures and algorithms will serve as a benefit for you to stand out from other candidates. The following Data Structures interview questions will help you crack your next interview!




Why data structures concepts are important

Many a times Computer Science graduates devalue the importance of learning data structures and algorithms considering it as complicated, irrelevant or a waste of time. However they soon get a reality check when they enter the real-world for job hunting. Big Companies like Amazon, Google, Microsoft often ask questions related to algorithms and data structures to check the problem-solving abilities of the candidates

So, Prepare yourself for tech interview by learning Data Structures and Algorithms Concepts

It's really important to understand the real-world significance of algorithms and its properties because using different ideas one can design many algorithms for computing a solution to a given problem. Key important questions in algorithms are

  • 🚀 How do we design good algorithms?

  • 🚀 How do we know that our algorithm is efficient ?

  • 🚀 How to efficiently implement algorithms in a programming language?

Let's look at some important product-based companies that test data Structures and algorithms skills in coding rounds:

CompanyAverage Package in INR
Google25 Lakh
Amazon25 Lakh
WalmartLabs23 Lakh
Flipkart23 Lakh
Microsoft24 Lakh
Uber21 Lakh
Abobe18 Lakh
Intuit19 Lakh
Apple21 Lakh
Difficutly level and Interview asked Question in data Structures and algorithms

During the Coding Interview

Congratulations, you are ready to put your skills into practice! In a real coding interview, you will be given a technical question (or questions) by the interviewer, write code in a real-time collaborative editor (phone screen/virtual onsite) or on a whiteboard (onsite) to solve the problem within 30-45 minutes. This is where the real fun begins!

Upon receiving the data structure interview questions

Many candidates jump into coding the moment they hear the question. That is usually a big mistake. Take a moment to repeat the question back at the interviewer and make sure that you understand exactly what they are asking. Repeating back/rephrasing the question will reduce chances of miscommunication.


Some common questions you can ask:

1.How big is the size of the input?

2.Are there duplicates within the input?

3.Can I destroy the original array/graph/data structure?

4.What kind of values are there? Are there negative numbers? Floating points? Will there be empty inputs?


After you have sufficiently clarified the scope and intention of the problem, start with a brute force approach, communicate it to the interviewer, explain the time and space complexity and why it is bad. It is unlikely that the brute force approach will be one that you will be coding.

At this point, the interviewer will usually pop the dreaded "Can we do better?" question, meaning that they are looking for a more optimal approach. In general, look for repeated work and try to optimize them by potentially caching the calculated result somewhere and reference it later, rather than having to compute it all over again.

What to do when stuck

Getting stuck during coding interviews is extremely common. But do not worry, that is part of the process and is a test of your problem solving abilities. Here are some tips to try out when you are stuck:

  • 🚀 Talk through what you initially thought might work and explain why it doesn't

  • 🚀 Come up with more test cases and write them down

  • 🚀 Think about how you would solve it without a program

  • 🚀 Recall past questions related to the topic, what similar questions in the past have you encountered and what techniques did you use to solve them?

  • 🚀 Enumerate through the common data structures and whether they can be applied to the question. There really aren't that many - stack, queue, dictionary, heap, graph, etc.

  • 🚀 Look out for repeated work and determine if you can cache those computations.

While coding

Write your code with a neat coding style (consistent indentation, spacing around your operators). Reading code written by others is usually not an enjoyable task. Use clear variable names, avoid single letter names unless they are for iteration.

Always be explaining what you are currently writing/typing to the interviewer. This is not about literally reading out what you are typing to the interviewer. Talk about the section of the code you are currently implementing at a higher level, explain why it is written as such and what it is trying to achieve.

After coding

After you have finished coding, do not immediately announce to the interviewer that you are done. In most cases, your code is usually not perfect and contains some bugs or syntax errors. What you need to do now is to review your code.

Next, take the initiative to come up with small test cases and step through the code (not your algorithm!) with those sample input. What interviewers usually do after you have finished coding would be to get you to write tests. It is a huge plus if you write tests for your code even before they prompt you to do so.

Lastly, give the time/space complexity of your code and explain why it is such. If your interviewer is happy with the solution, the interview usually ends here. It is also not uncommon that the interviewer asks you extension questions, such as how you would handle the problem if the whole input is too large to fit into memory, or if the input arrives as a stream.

Popular Live Courses

• For Freshers Candidates LIVE Course

Advanced Course of Data Structures, Algorithms & Problem Solving

Learn From Basic to Advanced Data Structures, Algorithms & Problem-Solving techniques in Java


  • Curriculum

    1:1 Mentorship

  • Duration

    4 Months Classes

  • LIVE Classes Weekend

  • ADDITIONAL CURRICULUM

    Projects included

• For Working Professionals LIVE Course

Advanced Course of Data Structures, Algorithms & System Design(HLD + LLD)

Learn From Basic to Advanced DSA, Problem Solving, Scalable System Design (HLD + LLD),Design Patten in Java


  • Curriculum

    1:1 Mentorship

  • Duration

    7 Months Classes

  • LIVE Classes Weekend

  • ADDITIONAL CURRICULUM

    Projects included



Being able to solve these extension questions will indicate that you are a strong candidate which will likely lead to a better offer.

Data Structure Interview Questions

A data structure offers a convenient way of organizing as well as manipulating the data. Simply put, it allows the data to be used in an effective manner. There is a galore of data structures and each of them is suitable for a distinct set of applications.

It is a fundamental concept of any programming language, essential for algorithmic design.

Data structure isn't a programming language like C, C++, java, etc. It is a set of algorithms that can be used in any programming language to organize the data in the memory.


Data Structure and Algorithm Concepts

This is one of the most frequently asked data structures interview questions where the interviewer expects you to give a clear answer. Data structures are of two types:

  • Linear Data Structure: Linear data structures are those whose elements are in sequential and in ordered way. For example: Array, Linked list

  • Non-Linear Data Structures: The Non-linear data structure does not form a sequence i.e. each item or element is connected with two or more other items in a non-linear arrangement. The data elements are not arranged in the sequential structure. For Example : Graphs, Trees


What are the different types of data structures

In data structures, data is organized in a way that makes it efficient to be used. Some practical applications of data structures are:

  • Storing data in a tabular form. For example, contact details of a person. This is done through arrays.

  • Arrays are widely used in image processing and speech processing.

  • Music players and image sliders use Linked Lists to move to next or previous items.

  • A Queue is used for job scheduling, the arrangement of data packets for communication.

  • Technologies like Blockchain, cryptography are based on Hashing algorithms.

  • Matrices are widely used to represent data and plotting graphs, performing statistical analysis.


applications of Data Structures

File Structure: A hard disk or external device (such as USB), stores data that remains intact till manually deleted. Such a representation of data into secondary or auxiliary memory is called a file structure.


Storage Structure: In this type of structure, data (variables, constants, etc.) are stored in the main memory, i.e. RAM, and is deleted once the function that uses this data gets completed.


Following are the various operations that can be performed on a data structure:

  • Deletion: Deleting an existing element from the data structure

  • Insertion: Adding a new element to the data structure

  • Searching: Find the location of an element, if it exists, in the data structure

  • Sorting: Arranging elements of the data structure in:

  • Traversal: Accessing each element of the data structure once for processing


This is one of the most frequently asked data structure interview questions where the interviewer expects you to give a thorough answer. Try to explain as much as possible rather than finishing your answer in a sentence!


A linked list is a data structure that has sequence of nodes where every node is connected to the next node by means of a reference pointer. The elements are not stored in adjacent memory locations. They are linked using pointers to form a chain.


Each node has two fields:

Data field: For storing data values.

Reference field: For storing address.


What is a linked list Data Structure?

The entry point in a linked list is called the head. Where the list is empty, the head is a null reference and the last node has a reference to null.


A linked list is a dynamic data structure, where the number of nodes is not fixed, and the list has the ability to grow and shrink on demand.


Linked lists are considered both linear and non-linear data structures depending upon the application they are used for. When used for access strategies, it is considered as a linear data-structure. When used for data storage, it is considered a non-linear data structure.



Linked Lists are better than arrays in the following ways:


  • Array sizes are fixed at run-time and can't be modified later, but Linked Lists can be expanded in real-time, as per the requirements.


  • Linked Lists are not stored contiguously in the memory, as a result, they are a lot more memory efficient than arrays that are statically stored.


  • As the size of a linked list can grow or shrink based on the needs of the program, there is no memory wasted because it is allocated in runtime.


  • Insertion and deletion process is expensive in an array as the room has to be created for the new elements and existing elements must be shifted.



Following are the scenarios where we use linked list over array:


  • Less number of random access operations.


  • When we want to insert items anywhere in the middle of the list, such as when implementing a priority queue, linked list is more suitable.


  • When we do not know the exact number of elements beforehand.


Below are the cases where we use arrays over the linked list:


  • When we need speed while iterating over the elements in the sequence.


  • When we need to index or randomly access elements more frequently.


  • Due to the nature of arrays and linked list, it is safe to say that filled arrays use less memory than linked lists.


In a nutshell, requirements of space, time, and ease of implementation are considered while deciding which data structure has to be used over what.


It is a complex type (double-ended LL) of a linked list in which a node has two links, one that connects to the next node in the sequence and another that connects to the previous node. This allows traversal across the data elements in both directions.


What is a doubly-linked list (DLL)?

  • The browser cache with BACK-FORWARD visited pages


  • The undo and redo functionality on platforms such as word, paint etc, where you can reverse the node to get to the previous page.



Stack is a linear data structure that follows LIFO (Last In First Out) approach for accessing elements.Push, pop, and top (or peek) are the basic operations of a stack.


Some notable applications of a stack are:


  • Check for balanced parentheses in an expression


  • Reverse a string


  • Evaluation of different expressions



A queue is a form of linear structure that follows the FIFO (First In First Out) approach for accessing elements. Dequeue, enqueue, front, and rear are basic operations on a queue. Like a stack, a queue can be implemented using arrays and linked lists.


In a stack, the item that is most recently added is removed first. Contrary to this, the item least recently added is removed first in case of a queue.


Heap is a special tree-based non-linear data structure in which the tree is a complete binary tree. A binary tree is said to be complete if all levels are completely filled except possibly the last level and the last level has all elements towards as left as possible. Heaps are of two types:


  • In a Max-Heap the data element present at the root node must be greatest among all the data elements present in the tree.


  • In a Min-Heap the data element present at the root node must be the smallest (or minimum) among all the data elements present in the tree.



Hashmap is a data structure that uses implementation of hash table data structure which allows access of data in constant time (O(1)) complexity if you have the key.


The time complexity is O(1) assuming that the hash function used in hash map distributes elements uniformly among the buckets.

In a stack, the item that is most recently added is removed first. Contrary to this, the item least recently added is removed first in case of a queue.


This is one of the favourite interview question where the interviewer demands a comprehensive explanation of the working principle.Try to explain it in a step-by-step manner.


Computers have cache memory that temporarily stores the most frequently used data. It's a great way to get the data that is used most often because the retrieval process is super fast


However, cache memory is limited in size and there needs to be a way to manage what data needs to be removed from the cache in order to store new data. That's where LRU cache comes in.


It's a cache replacement algorithm that removes the least recently used data in order to make room for new data. In order to achieve this, two data structures are used:


  • Queue: This is implemented using a doubly-linked list. The maximum size of the queue is determined by the cache size, i.e by the total number of available frames. The least recently used pages will be near the front end of the queue whereas the most recently used pages will be towards the rear end of the queue.


  • Hashmap: Hashmap stores the page number as the key along with the address of the corresponding queue node as the value.


The implementation is tricky. It exercises many of your programming fundamental skills and knowledge like using object oriented programming.

-You can checkout our course video explanation!


As the name suggests, we have to design a cache which will evict the least frequently used item when the cache is full and a new item needs to be added in the cache, also the operations get(K) and put(K, V) should take O(1) time.


To implement LFU cache we will use the combination of a oubly linked list and a hash map data structures. Define a node in the doubly linked list. Each node will contain information like key, value, frequency(number of times the key has been accessed), left node, and right node. For every new key, a new node will be added to the linked list. At any point in time, the nodes in the doubly linked list will be sorted based on their frequency of access. The head of the linked list will be the node that is least frequently accessed. This will help us get the node which is least frequently accessed in O(1) time.

Now, how do we access a key in constant time? For this purpose, we will use a hash map that will store the node's (node in the doubly linked list)

let's see an example of LFUCache of capacity 2.


cache = LFUCache(2). # The Cache is empty

1.cache.put(1, 1)

A new DataNode(key = 1, val = 1, frequency = 1) will be inserted in the cache.The cache becomes :

[frequency = 1] ->[key = 1, value = 1]


2.cache.put(2, 2)

Second DataNode(key = 2, val = 2, frequency = 1) will be inserted in the # cache.

[frequency = 1] ->[key = 1, value = 1] , [key = 2, value = 2]


3.cache.get(1)

Returns 1(for key = 1, value = 1), DataNode with key = 1 is promoted,

[frequency = 1] -> [key = 2, value = 2]

[frequency = 2] -> [key = 1, value = 1]


4.cache.put(3, 3)

Since the cache is full and key 3 is not present, key with least frequency(2 in # this case) will be evicted and a new DataNode(key = 3, val = 3, frequency #= 1) will be added.

[frequency = 1] -> [key = 3, value = 3]

[frequency = 2] -> [key = 1, value = 1]


5. cache.get(2)

Since key 2 is not present in the cache None will be returned. Cache remains as it was.

The implementation is tricky. It exercises many of your programming fundamental skills and knowledge like using object oriented programming.

-You can checkout our course video explanation!


Tree is a recursive, non-linear data structure consisting of the set of one or more data nodes where one node is designated as the root and the remaining nodes are called as the children of the root.


Some of the applications of trees are:

  • Filesystems: files inside folders that are inturn inside other folders.


  • Comments on social media: comments, replies to comments, replies to replies etc form a tree representation.



The maximum nodes are : 2k



Consider that every node of a tree represents a class called Node as given below:


class Node:
# Constructor to create a new node
def __init__(self, data):
    self.data = data
    self.left = None
    self.right = None

Then the height of the binary tree can be found as follows:


def height_of_tree(root):
            # base case: empty tree has a height of 0
            if root is None:
                return 0
            # recur for the left and right subtree and consider maximum depth
            return 1 + max(height_of_tree(root.left), height_of_tree(root.right))
            

Tree traversal is a process of visiting all the nodes of a tree. Since root (head) is the first node and all nodes are connected via edges (or links) we always start with that node. There are three ways which we use to traverse a tree:


    Inorder Traversal

  • Traverse the left subtree, i.e., call Inorder(root.left)


  • Visit the root, i.e. print(root.val)


  • Traverse the right subtree, i.e., call Inorder(root.right)


    Preorder Traversal

  • Visit the root, i.e. print(root.val)


  • Traverse the left subtree, i.e., call Preorder(root.left)


  • Traverse the right subtree, i.e., call Preorder(root.right)


    Postorder Traversal

  • Traverse the left subtree, i.e., call Postorder(root.left)


  • Traverse the right subtree, i.e., call Postorder(root.right)


  • Visit the root, i.e. print(root.val)



This is an interesting type of tree, i.e binary search tree because it follows certain parameters.


  • The left subtree of a node contains only nodes with keys lesser than the node's key.


  • The right subtree of a node contains only nodes with keys greater than the node's key.


  • The left and right subtree each must also be a binary search tree.



A graph is a common data structure that consists of a finite set of nodes (or vertices) and a set of edges connecting them. A pair (x,y) is referred to as an edge, which communicates that the x vertex connects to the y vertex.



BFS and DFS both are the traversing methods for a graph. Graph traversal is nothing but the process of visiting all the nodes of the graph.


  • The main difference between BFS and DFS is that BFS traverses level by level whereas DFS follows first a path from the starting to the end node, then another path from the start to end, and so on until all nodes are visited.


  • BFS uses queue data structure for storing the nodes whereas DFS uses the stack for traversal of the nodes for implementation.



The topological sort algorithm takes a directed graph and returns an array of the nodes where each node appears before all the nodes it points to.


Only applicable in Directed Acyclic graph(DAG)

Here is the implementation part in Python:


  def topological_sort(digraph):
    # digraph is a dictionary:
    #   key: a node
    # value: a set of adjacent neighboring nodes
    
    # construct a dictionary mapping nodes to their
    # indegrees
    indegrees = {node : 0 for node in digraph}
    for node in digraph:
        for neighbor in digraph[node]:
            indegrees[neighbor] += 1

    # track nodes with no incoming edges
    nodes_with_no_incoming_edges = []
    for node in digraph:
        if indegrees[node] == 0:
            nodes_with_no_incoming_edges.append(node)

    # initially, no nodes in our ordering
    topological_ordering = [] 

    # as long as there are nodes with no incoming edges
    # that can be added to the ordering 
    while len(nodes_with_no_incoming_edges) > 0:

        # add one of those nodes to the ordering
        node = nodes_with_no_incoming_edges.pop()
        topological_ordering.append(node)

        # decrement the indegree of that node's neighbors
        for neighbor in digraph[node]:
            indegrees[neighbor] -= 1
            if indegrees[neighbor] == 0:
                nodes_with_no_incoming_edges.append(neighbor)

    # we've run out of nodes with no incoming edges
    # did we add all the nodes or find a cycle?
    if len(topological_ordering) == len(digraph):
        return topological_ordering  # got them all
    else:
        raise Exception("Graph has a cycle! No topological ordering exists.")

Time and Space Complexity

  • All together, the time complexity is O(M+N), (where M is the number of edges),(where N is the number of nodes). That's the fastest time we can expect, since we'll have to look at all the nodes and edges at least once.


  • All in all, we have three structures and they're all O(N)space. Overall space complexity: O(N)



A single sorting algorithm can't be considered best, as each algorithm is designed for a particular data structure and data set. However, the QuickSort algorithm is generally considered the fastest because it has the best performance for most inputs.


Its advantages over other sorting algorithms include the following:

  • Cache-efficient: It linearly scans and linearly partitions the input. This means we can make the most of every cache load.


  • Efficient even in worst-case input sets, as the order is generally random.


  • Easy adaption to already- or mostly-sorted inputs.



Merge sort is a divide-and-conquer algorithm for sorting the data. It works by merging and sorting adjacent data to create bigger sorted lists, which are then merged recursively to form even bigger sorted lists until you have one single sorted list.


It will be more clear if you go through below animation

Here is the implementation in python


def mergeSort(arr):
    if len(arr) > 1:
  
         # Finding the mid of the array
        mid = len(arr)//2
  
        # Dividing the array elements
        L = arr[:mid]
  
        # into 2 halves
        R = arr[mid:]
  
        # Sorting the first half
        mergeSort(L)
  
        # Sorting the second half
        mergeSort(R)
  
        i = j = k = 0
  
        # Copy data to temp arrays L[] and R[]
        while i < len(L) and j < len(R):
            if L[i] < R[j]:
                arr[k] = L[i]
                i += 1
            else:
                arr[k] = R[j]
                j += 1
            k += 1
  
        # Checking if any element was left
        while i < len(L):
            arr[k] = L[i]
            i += 1
            k += 1
  
        while j < len(R):
            arr[k] = R[j]
            j += 1
            k += 1
       def printList(arr):
             for i in range(len(arr)):
                print(arr[i], end=" ")
             print()
  
  
# Driver Code
if __name__ == '__main__':
    arr = [3,7,0,8,9]
    print("Given array is", end="\n")
    printList(arr)
    mergeSort(arr)
    print("Sorted array is: ", end="\n")
    printList(arr)
  

In sorted List
  • A binary search is more efficient than a linear search because we perform fewer comparisons. With linear search, we can only eliminate one element per comparison each time we fail to find the value we are looking for, but with the binary search, we eliminate half the set with each comparison.


  • Binary search runs in O(log n) time compared to linear search's O(n) time. This means that the more of the elements present in the search array, the faster is binary search compared to a linear search.



The major data structures used are as follows:


  • RDBMS - Array (i.e. Array of structures)


  • Network data model - Graph


  • Hierarchical data model - Trees



Stack data structure is used in recursion due to its last in first out nature. Operating system maintains the stack in order to save the iteration variables at each function call


Most basic example of recursion is Fibonacci Series. Fibonacci series is a series of numbers formed by the addition of the preceding two numbers in the series. The first two terms are zero and one respectively. The terms after this are generated by simply adding the previous two terms


2 is calculated by adding the two numbers preceding it (1+1), 3 is calculated by adding the two numbers preceding it (1+2), 5 is (2+3), and so on..


Below in image we show how to design Fibonacci series using recursion. Recursion internally uses in-memory stack



Searching Algorithms are designed to check for an element or retrieve an element from any data structure where it is stored.


Different types of search algorithms are:

Linear Search

Binary Search

Jump Search

Interpolation Search

Exponential Search

Time complexity of few of the searching algorithms in Data structures


A binary search is an algorithm that is best applied to search a list when the elements are already in order or sorted. The list is searched starting in the middle, such that if that middle value is not the target search key, it will check to see if it will continue the search on the lower half of the list or the higher half. The split and search will then continue in the same manner.



Binary Search Algorithm is one of the widely used searching techniques. It can be used to sort arrays. This searching technique follows the divide and conquer strategy. The search space always reduces to half in every iteration. Binary Search Algorithm is a very efficient technique for searching but it needs some order on which partition of the array will occur.


This one was a tricky concept. We haven't come across any practical use case of this one yet but just knowing the concept is good from the interview perspective.


  • In a stable sorting algorithm, the order of the same element remains the same even after sorting. In other words, stable sorting maintains the position of two equals elements relative to one another but during the unstable sorting algorithm, this changes.


Some examples of stable algorithms are Merge Sort, Insertion Sort, Bubble Sort. While, QuickSort, Heap Sort, and Selection sort are unstable sorting algorithms.


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


Solution 1 - Using Addition and Subtraction

a = a + b;
b = a - b; // actually (a + b) - (b), so now b is equal to a
a = a - b; // (a b) -(a), now a is equal to b

But it will not work in all conditions. Integer will overflow if the addition is more than the maximum value of int primitive as defined by Integer.MAX_VALUE and if subtraction is less than the minimum value, i.e. Integer.MIN_VALUE.


Solution 2 - Using XOR trick

If you remember the XOR truth table then you know that A XOR B will return 1 if A and B are different and 0 if A and B are the same. This property gives birth to the following code, popularly known as the XOR trick:

x = x ^ y;
y = x ^ y; // now y = x
x = x ^ y; // now x = y

Difference Between List and Tuple in Python:

ListTuple
Lists are mutable. They can be modified after creationTuples are immutable. Once a tuple is created it cannot by changed Lists have order.
Lists consume more memoryTuple consume less memory as compared to the list
The list is better for performing operations, such as insertion and deletion.Tuple data type is appropriate for accessing the elements

Due to the fact that a backtracking algorithm takes all possible outcomes for a decision it is similar from this point of view with the brute force algorithm. The difference consist in the fact that sometimes a backtracking algorithm can detect that an exhaustive search is unnecessary and therefore it can perform better.


Brute force method actually takes a lot of time in solving problems because in this we generate all those solutions also which are actually not a solution. And this makes it time-consuming. But the idea of Backtracking is different. In Backtracking, we don't generate all possible solutions, rather than we keep go on checking whether the solution is correct or not at every step. If it is correct, we continue generating subsequent solutions to the problem. If it is incorrect we backtrack to the previous step and check for the other solutions.


Why is Quick Sort preferred for Arrays?

  • One of the main reasons for efficiency in quick sort is locality of reference, which makes it easy for the computer system to access memory locations that are near to each other, which is faster than memory locations scattered throughout the memory which is the case in merge sort.


  • Quick sort is an in-place sorting algorithm i.e. it does not require any extra space, whereas Merge sort requires an additional linear space, which may be quite expensive. In merge sort, the allocation and deallocation of the extra space increases the running time of the algorithm.



Why is Merge Sort preferred for Linked Lists?

  • In the case of linked lists, the nodes may not be present at adjacent memory locations, therefore Merge Sort is used.


  • Unlike arrays, in linked lists, we can insert items in the middle in O(1) extra space and O(1) time if we are given a reference/pointer to the previous node. Therefore, we can implement the merge operation in the merge sort without using extra space.



A String is said to be a palindrome if the reverse of String is equal to itself like "aba" is a palindrome because the opposite of "aba" is also "aba", but "abc" is not a palindrome because the reverse of "abc" is "cba" which is not equal.

The program is simple, and here are steps to find palindrome String:

1.Reverse the given String

2.Check if the reverse of String is equal to itself; if yes, then given String is a palindrome.


Here is the implementation in Python:

def isPalindrome(s):
 
    i = 0
    j = len(s) - 1
    while i < j:
        if s[i] != s[j]:
            return False
        i = i + 1
        j = j - 1
 
    return True
 
 
if __name__ == '__main__':
 
    s = 'MADAM'
 
    if isPalindrome(s):
        print('Palindrome')
    else:
        print('Not Palindrome')


Initially, reverse the individual words of the given string one by one, for example, after reversing individual words the string should be "i ekil siht margorp yrev hcum". Reverse the whole string from start to end to get the desired output "much very program this like i" in this example.

import java.util.Scanner;
 
public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        System.out.print("Original string : ");
 
        String originalStr = scanner.nextLine();
        scanner.close();
 
        String words[] = originalStr.split("\\s");
        String reversedString = "";
 
        //Reverse each word's position
        for (int i = 0; i < words.length; i++) { 
            if (i == words.length - 1) 
                reversedString = words[i] + reversedString; 
            else
                reversedString = " " + words[i] + reversedString; 
        } 
 
        // Displaying the string after reverse
        System.out.print("Reversed string : " + reversedString);
    }
}

Two String is called anagram, if they contain the same characters but on different order e.g. army and mary, stop and pots, etc. Anagrams are actually a mix-up of characters in String. If you are familiar with String API, i.e. java.lang.String then you can easily solve this problem.

In order to check if Strings are anagrams, you need to get their character array and see if they are equal or not. Though you can also use indexOf(), substring(), and StringBuffer or StringBuilder class to solve this question.

// Java program to check if two strings
// are anagrams of each other
class Solution{

static int NO_OF_CHARS = 256;

// function to check if two strings
// are anagrams of each other
static boolean areAnagram(char[] str1,char[] str2)
{
	
	// Create a count array and initialize
	// all values as 0
	int[] count = new int[NO_OF_CHARS];
	int i;

	// For each character in input strings,
	// increment count in the corresponding
	// count array
	for(i = 0; i < str1.length; i++)
	{
		count[str1[i] - 'a']++;
		count[str2[i] - 'a']--;
	}

	// If both strings are of different
	// length. Removing this condition
	// will make the program fail for
	// strings like "aaca" and "aca"
	if (str1.length != str2.length)
		return false;

	// See if there is any non-zero
	// value in count array
	for(i = 0; i < NO_OF_CHARS; i++)
		if (count[i] != 0)
		{
			return false;
		}
	return true;
}

// Driver code
public static void main(String[] args)
{
	char str1[] = "logicmojo".toCharArray();
	char str2[] = "mojologic".toCharArray();

	// Function call
	if (areAnagram(str1, str2))
		System.out.print("The two strings are " +
						"anagram of each other");
	else
		System.out.print("The two strings are " +
						"not anagram of each other");
}
}


An undirected graph is tree if it has following properties.

1.There is no cycle

2.The graph is connected. For an undirected graph we can either use BFS or DFS to detect above two properties.


Here is the implementation in Python:

from collections import defaultdict
class Graph:
    def __init__(self,n_vertices):
        self.V = n_vertices
        self.graph = defaultdict(list)
    def add_edge(self,u,v):
        self.graph[u].append(v)
        self.graph[v].append(u)
    def iscycle(self,v,visited_arr,parent):
        visited_arr[v] = "Visited"
        for i in self.graph[v] :
            if(visited_arr[i] == "not Visited") :
                if (self.iscycle(i,visited_arr,v)):
                    return True
            elif i != parent:
                return False
        return False

    def is_tree(self):
        visited_arr = ["not Visited"] * self.V
        if (self.iscycle(0,visited_arr,-1)) :
            return False
        for i in  range(self.V) : 
            if(visited_arr[i] == "not Visited"):
                return False
        return True
# Eg1 : Graph is a Tree
g2 = Graph(5) 
g2.add_edge(1, 0) 
g2.add_edge(0, 2)  
g2.add_edge(0, 3) 
g2.add_edge(3, 4)        

if (g2.is_tree() == True):
    print("Graph is a tree")
else :
    print("Graph is a not a Tree")


Dynamic programming is an extension of Divide and Conquer paradigm.

  • They both work by recursively breaking down a problem into two or more sub-problems. The solutions to the sub-problems are then combined to give a solution to the original problem


  • In Divide and conquer the sub-problems are independent of each other. Mergesort is a classic example of divide and conquer. The main difference between this example and the Fibonacci example is that in a mergesort, the division can (theoretically) be arbitrary, and no matter how you slice it up, you are still merging and sorting.


  • In dynamic programming the sub-problem are not independent. So to calculate new Fib number you have to know two previous values. For Merge sort you don't need to know the sorting order of previously sorted sub-array to sort another one.



Dynamic programming approach may be applied to the problem only if the problem has certain restrictions or prerequisites:

  • Optimal substructure: optimal solution can be constructed from optimal solutions of its subproblems


  • Overlapping sub-problems: problem can be broken down into subproblems which are reused several times or a recursive algorithm for the problem solves the same subproblem over and over rather than always generating new subproblems.



You can say both let's see how.


It's greedy because we always mark the closest vertex.

It's dynamic because distances are updated using previously calculated values.


But would say it's definitely closer to dynamic programming than to a greedy algorithm. To find the shortest distance from A to B, it does not decide which way to go step by step. Instead, it finds all places that one can go from A

The optimal decisions are not made greedily, but are made by exhausting all possible routes that can make a distance shorter. Therefore, it's a dynamic programming algorithm, the only variation being that the stages are not known in advance, but are dynamically determined during the course of the algorithm.


The following would be considered DP, but without recursion (using bottom-up or tabulation DP approach).

int fibresult[N];

void find_fib()
{
    fibresult[0] = 1;
    fibresult[1] = 1;
    for (int i = 2; i < N; i++)
       fibresult[i] = fibresult[i-1] + fibresult[i-2];
}

int fib(int x) { return fibresult[x]; }

You can find the count of total occurrences of a character in a string by following the approach below:

1.Initialize a counter variable to store the count of total occurrences of a character in a string.

2.Traverse the string character by character.

3.If the character of the string matches with the given character, increment the value of the count variable. Finally, return the counter variable.


// C++ program to count occurrences of a given
// character
#include <iostream>
#include <string>
using namespace std;

// Function that return count of the given
// character in the string
int count(string s, char c)
{
	// Count variable
	int res = 0;

	for (int i=0;i<s.length();i++)

		// checking character in string
		if (s[i] == c)
			res++;

	return res;
}

// Driver code
int main()
{
	string str= "logicmojo";
	char c = 'o';
	cout << count(str, c) << endl;
	return 0;
}


The Bellman-Ford algorithm finds single source shortest paths by repeatedly relaxing distances until there are no more distances to relax. Relaxing distances is done by checking if an intermediate point provides a better path than the currently chosen path.


This algorithm has the advantage over Dijkstra because it can handle graphs with negative edges, while Dijkstra is limited to non-negative ones. The only limitation it has are graphs with cycles that have an overall negative path, but this would just mean that there is no finite solution.

FUNCTION bellman_ford(graph, start_node, end_node)
	dist = Array[graph.node_count()]
	FOR n IN [0..graph.node_count()]
		dist[n] = infinity
	END FOR
	updated = False
	FOR x in [0..graph.node_count()]
		updated = false
		FOR n in [0..graph.node_count()]
			FOR p IN graph[n].parents()
				new_distance = dist[p.point] + p.distance
				IF dist[n] > new_distance
					dist[n] = new_distance
					updated = true
				END IF
			END FOR
		END FOR
		IF !updated
			BREAK
		END IF
	END FOR
	IF updated
		RETURN ERROR("Contains negative cycles, unsolvable")
	ELSE IF dist[end_node] == infinity
		RETURN ERROR("There is no connection between the start and end node")
	ELSE
		RETURN dist[end_node]
	END IF

There are two approaches basically.

The first approach we can use Hash Table in hash table basically we record each node's reference (or memory address) in a hash table. if the current node is null we reached the end of the Linked List and its not a cycle otherwise if the node's reference present in the Hash table, then there is a loop.


This is the second approach Basically Floyd's Cycle-Finding Algorithm which is the fastest algorithm described below


1.Traverse Linked List using two-pointer.

2.Move slow pointer by one position

3.Move fast pointer by two positions.

4.If these two pointers meet at the same node then there is a Loop. If they don't meet in the same position (pointer) then LinkedList doesn't have a loop.


Bit manipulation allows a programmer to work with bits as opposed to the abstractions used in modern programming languages. They normally use this kind of programming to detect and correct algorithms.


Bit manipulation makes use of bitwise operations, which is a level of operation that works with individual bits, which are the smallest units of data.

When two integers have opposite signs, it means that their most significant bits are different. The most significant bit of any negative number will always be one, whereas the most significant bit for positive numbers will always be zero. If you apply the bitwise operator exclusive OR (XOR "^") to two integers with opposite signs, you will get a negative number. This means that if the XOR operator is applied to two integers and returns less than zero, the two numbers have opposite signs.


A Simple Solution is to traverse all bits one by one. For every pair of bits, check if both are same, set the corresponding bit as 0 in output, otherwise set as 1.


// C++ program to find XOR without using ^ 
#include <iostream> 
using namespace std; 
  
// Returns XOR of x and y 
int myXOR(int x, int y) 
{ 
    int res = 0; // Initialize result 
      
    // Assuming 32-bit Integer  
    for (int i = 31; i >= 0; i--)                      
    { 
       // Find current bits in x and y 
       bool b1 = x & (1 << i); 
       bool b2 = y & (1 << i); 
         
        // If both are 1 then 0 else xor is same as OR 
        bool xoredBit = (b1 & b2) ? 0 : (b1 | b2);           
  
        // Update result 
        res <<= 1; 
        res |= xoredBit; 
    } 
    return res; 
} 
  
// Driver program to test above function 
int main() 
{ 
   int x = 3, y = 5; 
   cout << "XOR is " << myXOR(x, y); 
   return 0;  
}


A Better Solution can find XOR without using a loop. The expression (x | y) - (x & y) is equivalent to x ^ y


#include <iostream>
#include <bitset>
using namespace std;
 
// Function to find XOR of two numbers without using XOR operator
int findBits(int x, int y) {
    return (x | y) - (x & y);
}
 
int main()
{
    int x = 65;
    int y = 80;
 
    cout << "The first number in binary is " << bitset<8>(x) << endl;
    cout << "The second number in binary is " << bitset<8>(y) << endl;
 
    cout << "\nXOR is " << bitset<8>(findBits(x, y));
 
    return 0;
}

Minimum number of queues needed to implement priority queue is two. One queue is used for the actual storing of data, and the other one is used for storing the priorities.


The main problem, while dealing with an array is not finding duplicates, it's about removing them. Since an array is a static, fixed-length data structure, you can not change its length. This means, deleting an element from an array requires creating a new array and copying content into that array.

Algorithm:

1.Traverse the given array from start to end.

2.For every element in the array increment the arr[i]%n'th element by n.

3.Now traverse the array again and print all those indexes i for which arr[i]/n is greater than 1. Which guarantees that the number n has been added to that index

This approach works because all elements are in the range from 0 to n-1 and arr[i] would be greater than n only if a value "i" has appeared more than once.


Here is the implementation in Python:

# Python3 code to find duplicates in O(n) time
numRay = [0, 4, 3, 2, 7, 8, 2, 3, 1]
arr_size = len(numRay)
for i in range(arr_size):

	x = numRay[i] % arr_size
	numRay[x] = numRay[x] + arr_size

print("The repeating elements are : ")
for i in range(arr_size):
	if (numRay[i] >= arr_size*2):
		print(i, " ")


The correct answer is DFS. A DFS algorithm, (i.e. depth first search) as its name implies, traverses nodes at levels below the current node before it processes the rest of the nodes at the same level.

BFS does the opposite-- exhausts all known nodes at a level before it traverses a node in the level below. Since T is full, all of its leaves are at the same tree level. BFS reaches a leaf only after all internal nodes are traversed, while DFS reaches a leaf the soonest can be.


No, duplicate keys are not allowed in HashMap. The key in a entry pair is a unique reference to the Value, also to the location of that pair in the HashMap. When there is an attempt to put an entry with an existing key, the existing entry will be replaced with the new one. In such a case, the `put()` method of HashMap returns the existing entry that has been deleted.


HashMap does not allow for duplicate keys however, it does allow duplicate values. This means there can be multiple different keys with the same values.

HashMap also allows a null key, however as this is a key there can only be one null key per HashMap. You can have multiple null values.


This is an open-ended question to test your knowledge of in-place algorithms also to see whether it is thorough enough for you generate an example explaining it.


An in-place algorithm is an algorithm that doesn't use additional memory to process the input while it could use the input itself for its execution. The purpose of an in-place algorithm is to save memory space during execution.

A typical example is reversing an array. Consider an algorithm to reverse the values stored in an array 'inputArray' so that, in the 'outputArray' the first cell will hold value at the last cell of 'inArray', and so on.

public static String[] reverse(String[] inArray) {
		String[] outArray = new String[inArray.length];
		for (int i=0; i<inArray.length; i++)
			outArray[outArray.length-i-1]=inArray[i];
		return outArray;
	}

The main differences between pointers and reference parameters are -


1.References are used to refer an existing variable in another name whereas pointers are used to store address of variable


2.References cannot have a null value assigned but pointer can.


3.A reference variable can be referenced by pass by value whereas a pointer can be referenced by pass by reference.


4.A reference must be initialized on declaration while it is not necessary in case of pointer.


5.A reference shares the same memory address with the original variable but also takes up some space on the stack whereas a pointer has its own memory address and size on the stack



A null pointer means it is not pointing to anything. If, there is no address that is assigned to a pointer, then set it to null.

A pointer type, i.e., int *, char * each have a null pointer value.

The syntax is as follows-

<data type> *<variable name> = NULL;

A void pointer is nothing but the one who does not have any data type with it. It is also called as a general purpose pointer. It can hold the addresses of any data type.

The syntax is as follows -

void *<data type>;


B-trees are a type of self-balancing tree structure designed for storing huge amounts of data for fast query and retrieval.


They can be often confused with their close relation - the Binary Search Tree. Although they're both a type of m-way search tree, the Binary Search Tree is considered to be a special type of B-tree.


B-trees can have multiple key/value pairs in a node, sorted ascendingly by key order. We call this key/value pair a payload.


B-trees are considered to be so advantageous because they provide logarithmic O(log(n)) time complexity when it comes to insert, delete, and search operations.


The most well-known version of the B-tree is the B+tree. What distinguishes the B+tree from the B-tree are two main aspects:


All leaf nodes are linked together in a doubly-linked list. Satellite data is stored on the leaf nodes only. Internal nodes only hold keys and act as routers to the correct leaf node

In B+trees, data stored on the leaf node makes the search more efficient since we can store more keys in internal nodes - this means we need to access fewer nodes

Deleting data from a B+tree is easier and less time consuming because we only need to remove data from leaf nodes

In fact, 99% of database management systems use B+trees for indexing.


Data abstraction refers to providing only essential information to the outside world and hiding their background details, i.e., to represent the needed information in program without presenting the details. Data abstraction is a programming (and design) technique that relies on the separation of interface and implementation.


For example, your program can make a call to the sort() function without knowing what algorithm the function actually uses to sort the given values. In fact, the underlying implementation of the sorting functionality could change between releases of the library, and as long as the interface stays the same, your function call will still work.


In the case of signed numbers, the first bit is used to indicate whether positive or negative, which leaves you with one bit short. With unsigned numbers, you have all bits available for that number. The effect is best seen in the number range (unsigned 8 bit number has a range 0-255, while 8-bit signed number has a range -128 to +127.


To find the target key in a linked list, you have to apply sequential search. Each node is traversed and compared with the target key, and if it is different, then it follows the link to the next node. This traversal continues until either the target key is found or if the last node is reached.


The way to write arithmetic expressions is known as notation. There are three types of notations used in an arithmetic expression, i.e., without changing the essence or output of expression. These notations are:

Prefix (Polish) Notation - In this, the operator is prefixed to operands, i.e. ahead of operands.


Infix Notation - In this, operators are used in between operands.


Postfix (Reverse-Polish) Notation - In this, the operator is postfixed to the operands, i.e., after the operands.


InfixPrefixPostfix
x + y+xyxy+
(x + y)*z*+xyzxy+z*
x * (y + z)*x+yxyz+*

The amount of space or memory is occupied or allocated depends upon the data type of the variables that are declared. So let's explain the same by considering an example: Let's say the variable is declared as an integer type then 32 bits of memory storage is allocated for that particular variable. So based on the data type of the variable, the memory space will be allocated.


Amortised time explained in simple terms: If you do an operation say a million times, you don't really care about the worst-case or the best-case of that operation - what you care about is how much time is taken in total when you repeat the operation a million times. So it doesn't matter if the operation is very slow once in a while, as long as "once in a while" is rare enough for the slowness to be diluted away.

Essentially amortised time means "average time taken per operation, if you do many operations". Amortised time doesn't have to be constant; you can have linear and logarithmic amortised time or whatever else.


Trie is an efficient information retrieval data structure. Using Trie, search complexities can be brought to optimal limit (key length). If we store keys in binary search tree, a well balanced BST will need time proportional to M * log N, where M is maximum string length and N is number of keys in tree. Using Trie, we can search the key in O(M) time.


Every node of Trie consists of multiple branches. Each branch represents a possible character of keys. We need to mark the last node of every key as end of word node. A Trie node field isEndOfWord is used to distinguish the node as end of word node. A simple structure to represent nodes of the English alphabet can be as following,


struct TrieNode
{
    struct TrieNode *children[ALPHABET_SIZE];
 
    // isEndOfWord is true if the node represents
    // end of a word
    bool isEndOfWord;
};


Tries support ordered iteration, whereas iteration over a hash table will result in a pseudorandom order given by the hash function (also, the order of hash collisions is implementation defined), which is usually meaningless.


Tries tend to be faster on average at insertion than hash tables because hash tables must rebuild their index when it becomes full - a very expensive operation. Tries therefore have much better bounded worst case time costs, which is important for latency sensitive programs.


Tries facilitate longest-prefix matching, but hashing does not, as a consequence of the above. Performing such a "closest fit" find can, depending on implementation, be as quick as an exact find.



Hashing: is simply the act of turning a data chunk of arbitrary length into a fixed-width value (hereinafter called a hash value) that can be used to represent that chunk in situations where dealing with the original data chunk would be inconvenient.


A hash table is one of those situations; it simply stores references to such data chunks in a table indexed by each chunk's hash value. This way, instead of potentially comparing your desired key chunk against a huge number of chunks, you simply compute the hash value of the key chunk and do a much faster lookup with that hash value.


Heaps are structures meant to allow quick access to the min or the max. It allows you to pull the smallest or the biggest and quickly know the NEXT smallest or biggest. That's why it's called a Priority Queue


Use it whenever you need quick access to the largest (or smallest) item, because that item will always be the first element in the array or at the root of the tree. However, the remainder of the array is kept partially unsorted. Thus, instant access is only possible to the largest (smallest) item. Insertions are fast, so it's a good way to deal with incoming events or data and always have access to the earliest/biggest.


To construct a stack using queue we need two queues (q1, q2), and need to simulate the stack operations by using queue operations:

Push(E element)

1. if q1 is empty, enqueue E to q1

2. if q1 is not empty, enqueue all elements from q1 to q2, then enqueue E to q1, and enqueue all elements from q2 back to q1

pop

dequeue an element from q1


As we see, q1 acts as the main source for the stack, while q2 is just a helper queue that we use to preserve the order expected by the stack.


The very first approach of the problem is to sort the array in O(nlogn) time and take last 100 numbers. But the interviewer will not be happy with this solution so we need to think of a better solution.

We can keep a priority queue of the 100 biggest numbers, iterate through the billion numbers, whenever you encounter a number greater than the smallest number in the queue (the head of the queue), remove the head of the queue and add the new number to the queue.

With a priority queue implemented with a heap, the complexity of insertion to queue is O(log N). In the worst case you get billion*log2(100) which is better than billion*log2(billion)


The following are the main advantages of tries over binary search trees (BSTs):

    Looking up keys is faster. Looking up a key of length m takes worst case O(m) time. A BST performs O(log(n)) comparisons of keys, where n is the number of elements in the tree, because lookups depend on the depth of the tree, which is logarithmic in the number of keys if the tree is balanced. Hence in the worst case, a BST takes O(m log n) time. Moreover, in the worst case log(n) will approach m. Also, the simple operations tries use during lookup, such as array indexing using a character, are fast on real machines.


    The number of internal nodes from root to leaf equals the length of the key. Balancing the tree is therefore no concern.


    Tries are more space efficient when they contain a large number of short keys, because nodes are shared between keys with common initial subsequences.


StringsCharacter Array
String refers to a sequence of characters represented as a single data type.Character Array is a sequential collection of data type char.
Strings are immutable.Character Arrays are mutable.
Strings can be stored in any any manner in the memory.Elements in Character Array are stored contiguously in increasing memory locations.
Not preferred for storing passwords in Java.Preferred for storing passwords in Java.
All Strings are stored in the String Constant Pool.All Character Arrays are stored in the Heap.

In an index type is a b-tree and access an element in a b-tree in logarithmic time. On the other hand, accessing an element in a hash table is in O(1) then why we are using b-tree in database. The reason is you can only access elements by their primary key in a hashtable.This is faster than a tree algorithm(O(1) instead of O(logn)) but you cannot select ranges(everything in between x and y). Tree algorithms support this in logn whereas hash indexes can result in full table scan O(n).


This is another fascinating coding problem based on a binary tree that is frequently asked of new programmers. It's rather simple to solve if you have any familiarity with binary tree-related problems. We can use recursion here. Because recursion is used in most binary tree problems, we apply it to both left and right subtrees. To answer this problem, you must first understand what a leaf node is, since if you do not, you will be unable to solve it. So a leaf node is a node whose left and right child nodes are null. So we can print the leaf nodes of a BST checking each node if their both left and right child is null then print the node.
Algorithm
⮞ The very first case if given tree node or root is null then return
⮞ print the node if both of its children is null
⮞ repeat the process in both left and right subtree using recursion.


Because doubly linked lists have immediate access to both the front and back ends of the list, they can insert and delete data on either side in O(1) time. Doubly linked lists are the ideal underlying data structure for a queue because they can insert data at the end in O(1) time and delete data from the front in O(1) time.
⮞ Doubly linked list is used in LRU cache design since we need to remove least recently items frequently. Deletion operation is faster.
⮞ In singly linked list all operations require an extra pointer previous to be maintained. For example, in insertion, we need to modify previous pointers together with next pointers.


Floyd's Cycle Detection Algorithm is the foundation for this problem. The idea is to employ two pointers, one that moves quickly and the other that moves slowly. Both points travel the linked list at different speeds, and when they meet, it indicates that the LinkedList has a cycle. Save the address of this node and start incrementing a counter with 1 while traversing the LinkedList using another pointer from the common point. We will have our number of nodes in cycle count in the pointer whenever we reach the common pointer again. This number will be returned to you.
Algorithm:
⮞ Take two pointers, a fast pointer, and a slow pointer pointing to the head initially.
Traverse both the pointers as slowptr = slowptr->next (1 node at a time), and fastptr = fastptr->next->next (2 nodes at a time).
⮞ When slowptr == fastptr, the common point is the node for the head of the cycle.
⮞ Fix one pointer to this node and take count = 0 and move the other pointer from the common point one by one in the linked list and increment the counter by 1 in each step
⮞ When the other pointer reaches the common point then stop the iteration and return the count.


Let’s consider a graph G(V, E). The graph G is a bipartite graph if:
• The vertex set V of G can be partitioned into two disjoint and independent sets V1 and V2
• All the edges from the edge set E have one endpoint vertex from the set V1 and another endpoint vertex from the set V2

Some important points regarding bipartite graph
• If a graph is a bipartite graph then it’ll never contain odd cycles.
• The subgraphs of a bipartite graph are also bipartite.
• In an undirected bipartite graph, the degree of each vertex partition set is always equal.
To check whether graph is bipartite or not we use graph coloring and BFS to determine it.
Here are the steps of algorithm:
⮞ Assign a red color to the starting vertex start
⮞ Find the neighbors of the starting vertex and assign a different color(let's say blue)
⮞ Find the neighbor’s neighbor and assign a red color
⮞ Continue this process until all the vertices in the graph get colored
⮞ During this process if a neighbour vertex and coming vertex are of same color then we return graph is not a bipartite graph


Sometimes an interviewer asks you some tricky questions just to test how far you can go. So this question is one of them. We all know how to find the fibonacci number in recursion or iteration and for larger numbers we can use memoization technique to store the overlapping values. The time complexity for each of the methods are as follows:
Recursion: O(2N) This is the most naive approach to calculate fibonacci number and recursion.
Iterative or using memoization: O(n) Storing these values prevent us from constantly using memory space in the Stack.
Binet Formula: This approach will fail for higher values of n. For eg. The result given by below code for n = 71 is 308061521170129, while the correct answer is 308061521170130. So, this method will work well only for small values of n and is rarely used practically.
So, The nth Fibonacci number is given by the following formula:
goldenRatio = (1 + sqrt(5)) / 2
return round(pow(goldenRatio, n) / sqrt(5))
Time complexity of this method is O(1)


Bucket sort, also known as bin sort, is a sorting algorithm that splits the contents of an array into many buckets. The buckets are then sorted one by one, either with a separate sorting algorithm or by applying the bucket sorting process recursively.
Algorithm:
Create an empty array of size n(n empty buckets).
Loop through the original array and put each array element in a “bucket”.
Sort each of the non-empty buckets using insertion sort.
Visit the buckets in order and put all elements back into the original array

Data Structure and Algorithm Concepts

Complexity: Worst case time complexity:Θ(n2)
Average case time complexity:Θ(n+k)
Best case time complexity:Θ(n+k)
Space complexity:Θ(n+k)


HashMap and Hashtable store key and value pairs. When utilising a Hashtable or HashMap, we specify an object to serve as a key and the value to be associated with that key.

HashmapHashtable
No method is synchronized.Every method is synchronized.
Threads are not required to wait and hence relatively performance is high.It increases the waiting time of the thread and hence performance is low.
Null is allowed for both key and valueNull is not allowed for both key and value. Otherwise, we will get a null pointer exception.
HashMap inherits AbstractMap class.Hashtable inherits Dictionary class.

The Boyer Moore algorithm is a searching algorithm that looks for a string with length n and a pattern with length m. It prints all of the pattern's occurrences in the Text. Boyer Moore employs both a bad character heuristic and a positive character heuristic. Each of them is utilised to look for the pattern on its own. Pattern processing is utilised to create separate arrays for both heuristics in this approach, and the best heuristic is used at each stage. Boyer Moore begins by matching the previous pattern, which differs from KMP and Naive's method.


Because, when analysing performance, we are usually only interested in the worst-case scenario. Knowing the upper bound is therefore sufficient. When it performs better than expected for given input. Some Algorithms don't have tight bound at all. Moreover, tight bounds are often more difficult to compute.


BacktrackingBranch-N-Bound
Backtracking is a technique for discovering all viable solutions to a problem. When it realises it has made a faulty decision, it reverses the previous decision by backing it up. It searches the state space tree until a solution to the problem is found.Optimisation challenges are solved with Branch-and-Bound. It abandons the pre-solution when it realises that it already has a better optimal solution that the pre-solution leads to. To find the best answer, it searches the entire state space tree.
Backtracking involves feasibility function.Branch-and-Bound involves a bounding function.
Backtracking is used for solving Decision Problem.Branch-and-Bound is used for solving Optimisation Problem.
It is more efficientIt is less efficient
Useful in solving N-Queen Problem, Subset Sum.Useful in solving Travelling Salesman Problem, Knapsack Problem.

Data Structures Interview Questions In A Nutshell

These are some of the most frequently asked Data Structures interview questions. The questions depend on your level of experience and the position you are interviewing for. In general, companies try to assess how good you are in things you claim to know.

We hope that the above Data Structures interview questions have sufficed in explaining to you how important it is to study Data Structures and Algorithms. Do not be disheartened if you don't know how to take the necessary steps in improving your knowledge on DSA and getting the job you had in mind while answering these Data Structures interview questions.

You can join Logicmojo's Data Structures and Algorithms course to upskill your technical knowledge, experience, and guidance that will help you in securing the dream job.

Practice Data Structure Questions asked in Interviews

1. For a binary search algorithm to work, it is necessary that the array (list) must be




2. Stack is used for?




3. What data structure is used for breadth first traversal of a graph?




4. Which of the following is example of in-place algorithm?




5. Which of the below given sorting techniques has highest best-case runtime complexity ?




6. A Binary Tree can have




7. What is the time complexity to count the number of elements in the linked list?




8. What is the complexity of adding an element to the heap?




9. Heap can be used as?




10. Min heap can be used to implement selection sort?



11. What is the time, space complexity of the following code?
int a = 0;
for (i = 0; i < N; i++) {
	for (j = N; j > i; j--) {
		a = a + i + j;
	}
}





12. Consider the following for loops:

A. for(i = 0; i < n; i++)

B. for(i = 0; i < n; i += 2)

C. for(i = 1; i < n; i *= 2)

D. for(i = n; i > -1; i /= 2)





Logicmojo Learning Library


logicmojoContact

HAVE A QUESTION? GIVE US A CALL OR CONTACT US - WE'D LOVE TO HEAR FROM YOU

PHONE: +91 80889-75867

WhatsApp : Click Here...

FEEDBACKFORM