view Test/junge-main/data/treemap/TreeMapTest.cs @ 38:e954d456665c

library is made by rake
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 22 Feb 2017 16:58:10 +0900
parents 1f99e150f336
children
line wrap: on
line source

// using UnityEngine;
using System.Collections;
using JungleDB;

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("------------------------------------------");


		}
	
	}
}