PinnedPublished inLearn Coding Concepts with ShailaShifted Binary Search ProblemThe problem asks you to find a number from a sorted array but all the numbers has been shifted by some amount either left or right.For…Sep 15, 2019Sep 15, 2019
PinnedPublished inLearn Coding Concepts with ShailaBinary Search Tree Implementation in C++Binary search tree(BST) is a kind of binary tree(tree where each node has at most 2 child nodes) where any node of the tree will be less…Jul 25, 20191Jul 25, 20191
PinnedHash Table with ChainingHash table is a data structure that combines an array with a linked list. It takes the random access ability of an array and combines it…Mar 22, 2019Mar 22, 2019
PinnedPublished inLearn Coding Concepts with ShailaBFS Implementation in C++What is Breadth First Search(BFS)?Jul 6, 2019Jul 6, 2019
Published inLearn Coding Concepts with ShailaDocument Object Model(DOM)In order to make html page interactive, html document has to be represented in a way so that JavaScript can query and update it. To do this…May 4May 4
Published inLearn Coding Concepts with ShailaDoubly Linked List Implementation in C++What is a doubly-linked list?Apr 21Apr 21
Validate Binary Search TreeThe problem states that we will be given a binary tree and we have to determine if it is a valid binary search tree(BST) or not. you can…Apr 14, 2021Apr 14, 2021
RecursionMost of us know what recursion is and can write recursive code if we are asked to. But when we try to solve advance problems(i.e binary…Jun 20, 2020Jun 20, 2020