Sorting function is complete - Pointers are not updated whilst being swapped which needs to be changed

This commit is contained in:
Luke Else
2021-09-29 13:10:05 +01:00
parent ac83f95054
commit 0969e81afa
5 changed files with 126 additions and 12 deletions

View File

@ -10,7 +10,7 @@ namespace BinaryTree
Random random = new Random();
for (var i = 0; i < 50; i++)
for (var i = 0; i < 10; i++)
{
tree.Add(random.Next(0, 100));
}