Skip to content

Commit f96925b

Browse files
yet to come
1 parent 9e12b86 commit f96925b

File tree

7 files changed

+14
-157
lines changed

7 files changed

+14
-157
lines changed

.vscode/launch.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
78
{
89
"name": "(gdb) Launch",
910
"type": "cppdbg",

BinarySearchTree/verticalTraversal.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ void verticalTraversal(Node *root){
2727
}
2828

2929
if(curr-> right!= NULL){
30+
3031
q.push({curr-> right, hd+1});
3132
}
3233
}

Heap/kSortedArray.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
author:gulshan yadav
3+
email: gulshany01@gmail.com
4+
date: 19-July-2021
5+
*/
6+
#include<iostream>
7+
#include<bits/stdc++.h>
8+
using namespace std;
9+
10+
int main(){
11+
12+
}

Queue/Revision/a.out

-37.1 KB
Binary file not shown.

Queue/Revision/arrayImp.cpp

Lines changed: 0 additions & 60 deletions
This file was deleted.

Queue/Revision/linkedImp.cpp

Lines changed: 0 additions & 59 deletions
This file was deleted.

Queue/Revision/reversingQue.cpp

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)