iOS Interview Questions
- Data structure rounds
- Find an element in rotated sorted array
- Find occurrence of element in an array E.g[1,2,3,4,4,4,4,5,5,5,6,6]
- Kadane algorithm
- 0/1 knapsack problem
- Largest common subsequence
- Given an string “I love programming". You need to print “ i evol gnimmargorp"
- Implement stack using Queue Vice versa.
- Find two nodes are Sibiling are not in binary search tree.
- Find equlibrium point in array (equlibrium point is a place from where sum of all element in left is equal to sum of all element in right) e.g [-2,-3,2,10,4,-3,-7,–2,11] here symmetry point is at 4(index 4).
- Rod cutting problem.
- Find if any perumation of given string is palindrome.
- Write a code for binary search.
- Write any sorting alorithum question.