mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-13 15:37:06 +08:00
style: remove unused variables (#2946)
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
This commit is contained in:
@@ -33,7 +33,7 @@ public:
|
||||
};
|
||||
void RBtree::insert()
|
||||
{
|
||||
int z, i = 0;
|
||||
int z;
|
||||
cout << "\nEnter key of the node to be inserted: ";
|
||||
cin >> z;
|
||||
node *p, *q;
|
||||
|
||||
Reference in New Issue
Block a user