2021年2月28日

Sword 50

摘要: https://leetcode-cn.com/problems/di-yi-ge-zhi-chu-xian-yi-ci-de-zi-fu-lcof/ 把出现过得所有字符都放在一个字典中,相当于 Counter 从头遍历若发现 Counter[i] == 1 返回 阅读全文

posted @ 2021-02-28 15:21 FriskyPuppy 阅读(17) 评论(0) 推荐(0) 编辑

Sword 52

摘要: https://leetcode-cn.com/problems/liang-ge-lian-biao-de-di-yi-ge-gong-gong-jie-dian-lcof/ 若两个链表长度不等,交换成第一个链表长,第二个链表短 让长的链表先走 lenA - lenB 步,这样 curA curB 阅读全文

posted @ 2021-02-28 15:00 FriskyPuppy 阅读(14) 评论(0) 推荐(0) 编辑

Sword 53-II

摘要: https://leetcode-cn.com/problems/que-shi-de-shu-zi-lcof/ 是上题的一个子模块的变形 判定条件由原来的大小关系,变为是否相等 稍微修改代码即可 阅读全文

posted @ 2021-02-28 13:59 FriskyPuppy 阅读(20) 评论(0) 推荐(0) 编辑

Sword 53-I

摘要: https://leetcode-cn.com/problems/zai-pai-xu-shu-zu-zhong-cha-zhao-shu-zi-lcof/solution/ 由于是有序数组,所有二分找左界线和右界限。 while i <= j, 最终会在j < i 的时候停下来,所以是可以遍历到整 阅读全文

posted @ 2021-02-28 13:45 FriskyPuppy 阅读(20) 评论(0) 推荐(0) 编辑

导航