Skip to content

Data Structures and Algorithms Questions

  • by

here are the basic Data structures and algorithms questions

ARRAYS

  1. How do you find the missing number in a given integer array of 1 to 100?
  2. How do you find the duplicate number on a given integer array?
  3. How do you find the largest and smallest number in an unsorted integer array?
  4. How do you find all pairs of an integer array whose sum is equal to a given number?
  5. How do you find duplicate numbers in an array if it contains multiple duplicates?
  6. How are duplicates removed from a given array in Java?

LINKED LIST

  1. How do you find the middle element of a singly linked list in one pass?
  2. How do you check if a given linked list contains a cycle?
  3. How do you find the starting node of the cycle?
  4. How do you reverse a linked list?
  5. How do you reverse a singly linked list without recursion?
  6. How are duplicate nodes removed in an unsorted linked list?
  7. How do you find the length of a singly linked list?

STRINGS

  1. How do you print duplicate characters from a string?
  2. How do you check if two strings are anagrams of each other?
  3. How do you print the first non-repeated character from a string?
  4. How can a given string be reversed using recursion?
  5. How do you check if a string contains only digits?
  6. How are duplicate characters found in a string?

BINARY TREE

  • How is a binary search tree implemented?
  • How do you perform preorder traversal in a given binary tree?
  • How do you traverse a given binary tree in preorder without recursion?
  • How do you perform an in-order traversal in a given binary tree?
  • How do you print all nodes of a given binary tree using inorder traversal without recursion?
  • How do you implement a postorder traversal algorithm?

MISCELLANEOUS

  • How is a bubble sort algorithm implemented?
  • How is an iterative quicksort algorithm implemented?
  • How do you implement an insertion sort algorithm?
  • How is a merge sort algorithm implemented?
  • How do you implement a bucket sort algorithm?
  • How do you implement a counting sort algorithm?

Leave a Reply

Your email address will not be published. Required fields are marked *