-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
73 lines (64 loc) · 2.41 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RbTreeLibrary
{
//class Program
//{
// static void Traverse<T>(TreeNode<T> node, int rec, int recblack, int depth)
// {
// if (node == null)
// {
// if (depth != recblack)
// throw new ArgumentException(
// $"ERROR : expected count of {depth} but node has {recblack}");
// return;
// }
// //Console.WriteLine($"[{rec}]:{node.Item}{node.Color}");
// foreach(var next in new[] { node.Left, node.Right})
// Traverse(next, rec + 1,
// node.Color == RbColor.Black ? recblack+1 : recblack, depth);
// }
// static void Main(string[] args)
// {
// var tree = new RBTree<int>();
// var list = new List<int>();
// var rand = new Random(1);
// int N = 1000000;
// int M = N / 10;
// int i;
// for (i = 0; i < N; i++)
// list.Add(rand.Next(0, 50*N));
// int cnt=0;
// int pos1=0, pos2=0;
// for (i = 0; i < M; i++)
// {
// tree.Add(list[pos1++]);
// if (cnt++ % M == 0)
// Traverse(tree.Root, 0, 0, tree.Depth);
// }
// for(int j=0; j<9; j++)
// {
// for(i=0; i<M; i++)
// {
// tree.Add(list[pos1++]);
// if (cnt++ % M == 0)
// Traverse(tree.Root, 0, 0, tree.Depth);
// }
// for(i=0; i<M; i++)
// {
// tree.Remove(list[pos2++]);
// if (cnt++ % M == 0)
// Traverse(tree.Root, 0, 0, tree.Depth);
// }
// }
// // The code provided will print ‘Hello World’ to the console.
// // Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app.
// Console.WriteLine("Hello World!");
// Console.ReadKey();
// // Go to http://aka.ms/dotnet-get-started-console to continue learning how to build a console app!
// }
//}
}