|
61 | 61 | - [Get the Average value at each level of the tree](#get-the-average-value-at-each-level-of-the-tree)
|
62 | 62 | - [ADT](#adt)
|
63 | 63 | - [Time Memory Trade-Off technique](#time-memory-trade-off-technique)
|
64 |
| -- [Interview Coding Questions](#interview-coding-questions) |
| 64 | +- [Coding Interview Question and Answers](#coding-interview-question-and-answers) |
65 | 65 | - [Trees and Graphs](#trees-and-graphs)
|
66 | 66 | - [Route Between Nodes: Given a directed graph, design an algorithm to find out whether there is a route between two nodes.](#route-between-nodes-given-a-directed-graph-design-an-algorithm-to-find-out-whether-there-is-a-route-between-two-nodes)
|
67 | 67 | - [Minimal Tree: Given a sorted increasing order array with unique integer elements, write an algorithm to create a binary search tree with minimal height](#minimal-tree-given-a-sorted-increasing-order-array-with-unique-integer-elements-write-an-algorithm-to-create-a-binary-search-tree-with-minimal-height)
|
@@ -655,7 +655,7 @@ abstract data type (ADT) - ADT is defined as a user point of view of a data type
|
655 | 655 |
|
656 | 656 | Trade off or invest some memory to improve run time complexity. Suppose use Has-table, set etc. to insert some of the calculations that you want to not repeat.
|
657 | 657 |
|
658 |
| -## Interview Coding Questions |
| 658 | +## Coding Interview Question and Answers |
659 | 659 |
|
660 | 660 | ### Trees and Graphs
|
661 | 661 |
|
@@ -737,10 +737,12 @@ Delete 15 from BST
|
737 | 737 | - [Answer](https://codepen.io/roopkt/pen/bGqOxyN)
|
738 | 738 |
|
739 | 739 |
|
740 |
| -<iframe height="265" style="width: 100%;" scrolling="no" title="Find Inorder Successor in BST Question" src="https://codepen.io/roopkt/embed/preview/YzZdMxa?height=265&theme-id=dark&default-tab=js,result" frameborder="no" loading="lazy" allowtransparency="true" allowfullscreen="true"> |
741 |
| - See the Pen <a href='https://codepen.io/roopkt/pen/YzZdMxa'>Find In-order Successor in BST Question</a> by Rupesh Tiwari |
742 |
| - (<a href='https://codepen.io/roopkt'>@roopkt</a>) on <a href='https://codepen.io'>CodePen</a>. |
743 |
| -</iframe> |
| 740 | +<p class="codepen" data-height="265" data-theme-id="dark" data-default-tab="js,result" data-user="roopkt" data-slug-hash="bGqOxyN" style="height: 265px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;" data-pen-title="Find In-order Successor in BST Answer"> |
| 741 | + <span>See the Pen <a href="https://codepen.io/roopkt/pen/bGqOxyN"> |
| 742 | + Find In-order Successor in BST Answer</a> by Rupesh Tiwari (<a href="https://codepen.io/roopkt">@roopkt</a>) |
| 743 | + on <a href="https://codepen.io">CodePen</a>.</span> |
| 744 | +</p> |
| 745 | +<script async src="https://cpwebassets.codepen.io/assets/embed/ei.js"></script> |
744 | 746 |
|
745 | 747 | ### Recursion Interview Questions
|
746 | 748 |
|
|
0 commit comments