摘要: 1.遍历键值对 使用map.entrySet(),注意foreach语句中的类型为Map.Entry<K, V> 2.遍历Key 使用map.keySet() 3.遍历Value 使用map.values() 阅读全文
posted @ 2018-11-23 19:45 华仔要长胖 阅读(1437) 评论(0) 推荐(0) 编辑
摘要: Difficulty:easy More:【目录】LeetCode Java实现 Description Design and implement a TwoSum class. It should support the following operations: addand find.add( 阅读全文
posted @ 2018-11-23 19:28 华仔要长胖 阅读(360) 评论(0) 推荐(0) 编辑