File tree 4 files changed +77
-0
lines changed
4 files changed +77
-0
lines changed Original file line number Diff line number Diff line change @@ -292,11 +292,13 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
292
292
| ----------| :----------------:|
293
293
| Binary Search | [ C++] ( c++/bin-search.cpp ) |
294
294
| 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 ) |
295
296
| Inorder of a BST(Binary Search Tree)| [ C++] ( c++/inorder-of-BST.cpp ) |
296
297
| PostOrder of a BST| [ C++] ( c++/postOrder-of-BST.cpp ) |
297
298
| Preorder of BST| [ C++] ( c++/preOrder-of-BST.cpp ) |
298
299
| Kth largest element in BST| [ C++] ( c++/.cpp ) |
299
300
| Mirror Tree| [ C++] ( c++/mirror-tree.cpp ) |
301
+ | Level order traversal of a tree| [ C++] ( c++/tree-level-order-traversal.cpp ) |
300
302
| Left view of a binary tree| [ C++] ( c++/left-view-of-binary-tree.cpp ) |
301
303
| Sum of leaf nodes (Tree)| [ C++] ( c++/sum-of-leaf-nodes.cpp ) |
302
304
| 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
321
323
| ----------| :----------------:|
322
324
| Sum of depenncies in a graph | [ C++] ( c++/sum_of_depencies.cpp ) |
323
325
| BFS of a graph | [ C++] ( c++/bfs-graph.cpp ) |
326
+ | Print adjacency list| [ C++] ( c++/print-adjacency-list.cpp ) |
327
+ | | [ C++] ( c++/.cpp ) |
328
+
324
329
325
330
## Math and BitMagic
326
331
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments