Skip to content

Commit

Permalink
Update 02 BST Insert,Inorder&Search.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
skjha1 authored Sep 22, 2020
1 parent 768e57f commit 87a54ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tree/BST/02 BST Insert,Inorder&Search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void BST::Insert(int key) {

Node* t = root;
Node* p;
Node* r;
Node* r=t;

// root is empty
if (root == nullptr) {
Expand Down

0 comments on commit 87a54ee

Please sign in to comment.