自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 22 4.19 leetcode练习小结

1.每日一题字符的最短距离 给你一个字符串 s 和一个字符 c ,且 c 是 s 中出现过的字符。 返回一个整数数组 answer ,其中 answer.length == s.length 且 answer[i] 是 s 中从下标 i 到离它 最近 的字符 c 的 距离 。 public int[] shortestToChar(String s, char c) { int[] ans = new int[s.length()]; ArrayList<In

2022-04-19 21:19:59 68

原创 Stream流简单学习

public static void main(String[] args) { //获取到stream流的每一个元素 Stream.of("xiaotian", "xiaohu", "ming", "gala") .forEach(name-> System.out.println(name));//xiaotian xiaohu ming gala System.out.println("--------------.

2022-04-18 21:34:37 141

原创 22.4.18每日一题字典序排数及查找最长有效符号的算法题

1.每日一题 字典序排数 public List<Integer> lexicalOrder(int n) { ArrayList<Integer> ans = new ArrayList<>(); for (int i = 1; i < 10; i++) { temp(i, n, ans); } return ans; } private void temp(int i, int n, ArrayList&lt

2022-04-18 21:30:28 92

原创 BIO初步学习

1.一个服务端一个客户端 具体代码实现 服务端 public class Server { public static void main(String[] args) { try { ServerSocket serverSocket = new ServerSocket(9999); Socket socket = serverSocket.accept(); InputStream inputSt

2022-04-01 22:29:40 92

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除