view Test/junge-main/data/treemap/TreeMapTest.cs @ 41:bd44baa491a9 default tip

add TestJungleCore.cs
author Kazuma Takeda
date Thu, 23 Feb 2017 17:19:55 +0900
parents e954d456665c
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("------------------------------------------");


		}
	
	}
}