首页>代码>java数据结构之红黑树实现TreeMap源码、和JDK源码大同小异>/tree-map/src/main/java/com/mjy/test/TreeMapTest.java
package com.mjy.test;

import com.mjy.map.Map;
import com.mjy.map.TreeMap;

/**
 * ***************************************************
 * @ClassName TreeMapTest
 * @Description 描述
 * @Author maojianyun
 * @Date 2020/1/9 23:30
 * @Version V1.0
 * ****************************************************
 **/
public class TreeMapTest {

    public static void main(String[] args) {
        test1();
    }

    static void test1() {
        Map<String, Integer> map = new TreeMap<String, Integer>();
        map.put("c", 2);
        map.put("a", 5);
        map.put("b", 6);
        map.put("a", 8);
        map.put("a", 9);
        map.remove("b");
        System.out.println(map.containsKey("b"));
        System.out.println(map.containsValue(2));
        map.traversal(new Map.Visitor<String, Integer>() {
            public boolean visit(String key, Integer value) {
                System.out.println(key + "_" + value);
                return false;
            }
        });


    }
}
最近下载更多
matintalorr  LV10 2021年8月31日
最代码官方  LV168 2020年1月11日
最近浏览更多
graceful 2023年10月18日
暂无贡献等级
666ing  LV2 2023年2月26日
学不会代码就去种地 2022年11月22日
暂无贡献等级
绘飛的渔 2022年8月2日
暂无贡献等级
yuyan701  LV1 2022年1月1日
matintalorr  LV10 2021年8月31日
smile 2021年6月10日
暂无贡献等级
絮落无痕  LV13 2021年4月21日
Killah  LV9 2021年4月16日
zarathurstra 2020年11月6日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友