35. 搜索插入位置
https://leetcode-cn.com/problems/search-insert-position/
解法一:
一次遍历,找插入位置即可
解法二:二分
注意特殊处理,h初始为len(nums),另外l,h的移动方式也与传统二分不同。
最后更新于
https://leetcode-cn.com/problems/search-insert-position/
一次遍历,找插入位置即可
注意特殊处理,h初始为len(nums),另外l,h的移动方式也与传统二分不同。
最后更新于