上一页 1 ··· 24 25 26 27 28
摘要: 链接:https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof/ 代码: /** * Definition for singly-linked list. * struct ListNode { * int val 阅读全文
posted @ 2020-02-15 17:33 景云ⁿ 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/ti-huan-kong-ge-lcof/ 代码: class Solution { public: string replaceSpace(string s) { string res; for (auto x: s) { i 阅读全文
posted @ 2020-02-15 17:31 景云ⁿ 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/er-wei-shu-zu-zhong-de-cha-zhao-lcof/ 思路: 因为matrix是从左到右从上到下递增的,因此我们从matrix右上角的数字开始遍历,如果target大于它,则向下走一行,若target小于它 阅读全文
posted @ 2020-02-14 16:32 景云ⁿ 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof/ 思路: 首先判断边界情况,然后对数组进行遍历,如果遍历的当前数字不在数组中的对应位置,则将他们进行交换,否则即数组中对应位置已经有数组,则为重复数字。 阅读全文
posted @ 2020-02-14 16:19 景云ⁿ 阅读(208) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28