Skip to content

Commit 8d7919c

Browse files
committed
Adds BST and tree level order and print adjancency list of a graph solutions
1 parent 70960a3 commit 8d7919c

4 files changed

+77
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,13 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
292292
|----------|:----------------:|
293293
|Binary Search |[C++](c++/bin-search.cpp)|
294294
|Min in BST|[C++](c++/min-in-BST.cpp)|
295+
|Level order of a binary search tree|[C++](c++/level-order-of-binary-search-tree.cpp)|
295296
|Inorder of a BST(Binary Search Tree)|[C++](c++/inorder-of-BST.cpp)|
296297
|PostOrder of a BST|[C++](c++/postOrder-of-BST.cpp)|
297298
|Preorder of BST|[C++](c++/preOrder-of-BST.cpp)|
298299
|Kth largest element in BST|[C++](c++/.cpp)|
299300
|Mirror Tree|[C++](c++/mirror-tree.cpp)|
301+
|Level order traversal of a tree|[C++](c++/tree-level-order-traversal.cpp)|
300302
|Left view of a binary tree|[C++](c++/left-view-of-binary-tree.cpp)|
301303
|Sum of leaf nodes (Tree)|[C++](c++/sum-of-leaf-nodes.cpp)|
302304
|Search Element in BST|[C++](c++/search-element-in-bst.cpp)|
@@ -321,6 +323,9 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
321323
|----------|:----------------:|
322324
|Sum of depenncies in a graph |[C++](c++/sum_of_depencies.cpp)|
323325
| BFS of a graph |[C++](c++/bfs-graph.cpp)|
326+
|Print adjacency list|[C++](c++/print-adjacency-list.cpp)|
327+
| |[C++](c++/.cpp)|
328+
324329

325330
## Math and BitMagic
326331

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// https://practice.geeksforgeeks.org/problems/levelorder-in-bst/1/?track=DSA-Foundation-Final-BST&batchId=193
2+
vector<int> levelOrder(Node *root)
3+
{
4+
// Level order is made applying the Breath First search
5+
vector<int>s;
6+
if(root == NULL)
7+
s;
8+
9+
// Create a queue
10+
queue<Node *>myQueue;
11+
// Insert the root in the queue
12+
myQueue.push(root);
13+
14+
Node *node;
15+
// While queue is not empty: pop fron node and hten push left and right child
16+
while(!myQueue.empty())
17+
{
18+
// Print node from queue
19+
node = myQueue.front();
20+
s.push_back(node->data);
21+
myQueue.pop();
22+
23+
// Enqeue left child
24+
if(node->left != NULL)
25+
myQueue.push(node->left);
26+
27+
// Enque right child
28+
if(node->right != NULL)
29+
myQueue.push(node->right);
30+
}
31+
return s;
32+
}

c++/print-adjacency-list.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// https://practice.geeksforgeeks.org/problems/print-adjacency-list-1587115620/1/?track=DSA-Foundation-Final-Graph&batchId=193
2+
// adj: array of vectors to represent graph
3+
// V: number of vertices
4+
void printGraph(vector<int> adj[], int V)
5+
{
6+
for(int i =0; i < V; i++)
7+
{
8+
cout << i;
9+
for(int j =0; j < adj[i].size(); j++)
10+
cout << "-> "<<adj[i][j];
11+
12+
cout <<endl;
13+
}
14+
}

c++/tree-level-order-traversal.cpp

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// https://practice.geeksforgeeks.org/problems/level-order-traversal/1/?track=DSA-Foundation-Final-Tree&batchId=193
2+
vector<int> levelOrder(Node* node)
3+
{
4+
vector<int>s;
5+
if(node == NULL)
6+
return s;
7+
8+
// Apply Breadth first search algorithm
9+
// Create queue and push root inside
10+
queue<Node*> myQueue;
11+
myQueue.push(node);
12+
13+
Node *current_node;
14+
while(!myQueue.empty())
15+
{
16+
current_node = myQueue.front();
17+
s.push_back(current_node->data);
18+
myQueue.pop();
19+
20+
if(current_node->left != NULL)
21+
myQueue.push(current_node->left);
22+
23+
if(current_node->right != NULL)
24+
myQueue.push(current_node->right);
25+
}
26+
}

0 commit comments

Comments
 (0)