Demo Video
Demo video1: Delete a node in BST
Submit your query here
or SMS to +91-6309754771
Data Structures and Algorithms
Data Structures for interviews course at Algorithm Training training institute requires prior knowledge from students on Data Structures and Algorithms. This training targets top MNC interviews. This Training would be very useful for in and off campus placements for students from IITs, NITs, BITs, IIITs, Universities and other top engineering students. Here we are going to discuss and implement the problems. Hence this is one of the Best Data structures And Algorithms Training In Bangalore or Data Structures and Algorithms Training In Hyderabad
Course Details:
Duration: 30 hrs
time : 7.30 pm
Mode : online and class room
Course Fee: click here
Demo:
Trainer Details:
Trainer Details:
Course Content
Course Content
Download course content here: Data Structures and Algorithms for Interviews (2282 downloads )
SNO | Topic | Sub topic | Sample questions | No. of hrs |
---|---|---|---|---|
1 | Algorithm Analysis | How to analyse a program
Big O notation Theta notation Omega notation |
1 | |
2 | Stacks | a)Array and linked list implementation of a stack
create stack() isempty() push() pop() b) infix to post fix conversion c) evaluate postfix expression |
1.Check for balanced parentheses in an expression
2, Manage 2 stacks in an array 3. Checkpalindromeor not 4. Reverse a string 5. Sort stack 6 Get MIN in O(1) time 7. Find next greater element...etc |
2 |
3 | Recursion | Recursion analysis using stack frames
Recursion tree |
Analysis of factorial problemAnalysis of fib series |
1 |
4 | queues | a)Array and linked list implementation of a queue
create queue() isempty() insert() remove() b) circular queue c) double ended queue |
1. Queue using
2 stacks 2. Sort queue 3. Reverse Queue ...etc |
1 |
5 | Linked Lists | linked listi
nsertFront() insertAfter() \insertEnd() DelFirst() DelEnd() DeleAfter() |
35 + problems on LL
questions like
|
7 |
6 | Circular linked list | insert()
remove() stack as CLL queue as CLL |
||
7 | Doubly linked list | setLeft()
setRight() remove() removeLeft() RemoveRight() |
||
8 | Binary Tree and Binary Search trees | a) Tree terminology
b) General tree a) expression tree b)Binary Tree e) Tree traversal PreTraversal() postTraversal() inorderTrav() f) Construct original tree from given pre order and in order traversals.
g) Construct original tree from given post order and in order traversals.
a) createtree() b) setleft() c) setRight() d) createTree() e) disposeTree() f) FindKey)_ g) findMin() h) findMax() i) find inorder successor, predecessor
j) Tree delete operation
|
35 + problems on trees
questions like
|
331 |
9 | AVL tree |
Rotations
a) LR
b) RL
c) LL
d) RR
|
||
10 | Sorting | Bubble sort
Insertion sort Quick sort Merge sort Heap sort Priority queue |
||
11 | Sorting Array interview questions1 | Related to sorting | 1. given a binary digits like001101 arrange the numbers such that zeroes should follow 1sike 0001111.
2. Find Triplets of a+b+c=k in an array
etc
|
2 1 |
12 | searching | Linear Search
Binary search |
2 problems on tries
|
|
13 | Hashing | open hashing
closed hashing |
implementation of hash table
|
|
14 | Tries | introduction
node structure insert search |
2 problems on TRIES
|
|
15 | Suffix Trees | |||
16 | Ternary Search Tree | introduction
node structure insert search |
||
17 | B tree | introduction
node structure insert (algorithm) search (algorithm) |
||
18 | Tournament Tree | |||
19 | Divide and conquer |
Merge Sort
Quick Sort
|
||
20 | Graphs |
Adjacency matrix
Adjacency list
BFS
DFS
Disjaskra shortest path
Floydshortest path
Spanning tree
|
Detect Cycle in a graph
Topological sorting
check the given graph is tree or not
Find the number of islands
.. etc
|
|
21 | Dynamic Programming |
Introduction to dynamic programming
memorization (top down)
tabulation (Bottom up)
optimal sub structure
|
rec solDP solution of
1 Longest common sub sequence
2 Longest increasing sequence
3 Knapsack problem
4 Coin change problem
5 factorial of a numer
6 fibanacci series
|