枫201906201702851
枫201906201702851
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
枫201906201702851的博客
全部文章
(共4篇)
最优解法
递归解法 import java.util.ArrayList; import java.util.HashSet; import java.util.Collections; public class Solution { public ArrayList<String> P...
2020-01-14
0
547
[编程题]第一个只出现一次的字符
O(n)极简内存版 public class Solution { public int FirstNotRepeatingChar(String str) { int[] counts = new int[58]; for(int i = 0; i <...
2020-01-02
27
1828
[编程题]顺时针打印矩阵-JAVA
取数方向是→↓←↑,对应direction的0、1、2、3,当List大小为矩阵元素个数时终止循环,不需要麻烦的条件判断,思路简洁。 import java.util.ArrayList; public class Solution { public ArrayList<Integer...
2019-12-28
0
614
[编程题]链表中倒数第k个结点
public class Solution { public ListNode FindKthToTail(ListNode head, int k) { ListNode res = head; int index = 0; while(he...
2019-12-28
0
604