摘要: JAVA: public final ListNode partition(ListNode head, int x) { ListNode leftHead = new ListNode(), rightHead = new ListNode(), left = leftHead, right = 阅读全文
posted @ 2021-06-26 21:39 牛有肉 阅读(40) 评论(0) 推荐(0) 编辑
摘要: . 和 / 的可能组合过多时,分开处理。先按 / 分割字符串,再处理 . 。 JAVA: public final String simplifyPath(String path) { int len = path.length(); StringBuilder sb = new StringBui 阅读全文
posted @ 2021-06-26 19:06 牛有肉 阅读(48) 评论(0) 推荐(0) 编辑