comparison src/test/csharp/jp.ac.u-ryukyu.ie.cr/data/treemap/TreeMapDelete.cs @ 2:a3af05a061b4

fix , but not work.
author Kazuma
date Fri, 01 Jul 2016 19:28:57 +0900
parents 5c58219da97e
children 79da77797f7e
comparison
equal deleted inserted replaced
1:5c58219da97e 2:a3af05a061b4
8 TreeMap<int,int> map = new TreeMap<int, int> (); 8 TreeMap<int,int> map = new TreeMap<int, int> ();
9 for (int count = 1; count < 6; count++) { 9 for (int count = 1; count < 6; count++) {
10 Debug.Log (count); 10 Debug.Log (count);
11 map = map.put (count, count); 11 map = map.put (count, count);
12 int val = map.get(count); 12 int val = map.get(count);
13 Debug.Log ("value : " + val); 13 //Debug.Log ("value : " + val);
14 map.checkDepth (); 14 map.checkDepth ();
15 } 15 }
16 16
17 // ただ消すための数字をここに入れているだけ 17 // ただ消すための数字をここに入れているだけ
18 List<int> list = new List<int>(5); 18 List<int> list = new List<int>(5);