
java
Sengo_1993
你多走了许多弯路,却看到了更多的风景。你觉得一切为时已晚,却恰是刚刚好的开始。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Some Java Knowledge Review
Set HashMap Reference:https://blog.csdn.net/jiary5201314/article/details/51439982 HashMapis a Map based collection class that is used for storing Key & value pairs. Structure: It has an ...原创 2019-03-09 07:56:26 · 319 阅读 · 0 评论 -
leetcode刷题整理-用java做的题
JAVA一些语法整理: Queue: Queue<String> queue = new LinkedList<String>(); queue.offer("a"); // 添加一个元素并返回true queue.poll(); // get and pop the first element queue.peek(); // 返回队列头部的元素 ...原创 2019-03-13 04:07:47 · 3839 阅读 · 0 评论