view src/test/csharp/jp.ac.u-ryukyu.ie.cr/junge-main/data/treemap/TreeMapTest.cs @ 17:01a08cf4b2d9

Liq Files
author Kazuma
date Mon, 07 Nov 2016 01:05:24 +0900
parents
children
line wrap: on
line source

using UnityEngine;
using System.Collections;

public class TreeMapTest : MonoBehaviour {
	private int ReturnNumber;
	// Update is called once per frame
	public void Start () {
		TreeMap<int, int> map = new TreeMap<int,int>();
		Debug.Log (map);
		for (int count = 5; count > -10; count--) {
			map = map.put(count, count);
			map.checkDepth();
			Debug.Log("------------------------------------------");


		}
	
	}
}