经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 程序设计 » 编程经验 » 查看文章
LeetCode 35. Search Insert Position
来源:cnblogs  作者:flowingfog  时间:2018/10/16 9:17:19  对本文有异议

分析

难度 易

来源

https://leetcode.com/problems/search-insert-position/description/

题目

Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You may assume no duplicates in the array.

Example 1:

  1. Input: [1,3,5,6], 5
  1. Output: 2

Example 2:

  1. Input: [1,3,5,6], 2
  1. Output: 1

Example 3:

  1. Input: [1,3,5,6], 7
  1. Output: 4

Example 4:

  1. Input: [1,3,5,6], 0
  1. Output: 0

解答

  1. 1 package LeetCode;
  2. 2
  3. 3 public class L35_SearchInsertPosition {
  4. 4 public int searchInsert(int[] nums, int target) {
  5. 5 int pos=0;
  6. 6 int len=nums.length;
  7. 7 if(len==0)
  8. 8 return pos;
  9. 9 else if(len==1){
  10. 10 if(nums[0]>=target)
  11. 11 pos=0;
  12. 12 else
  13. 13 pos=1;
  14. 14 }else{
  15. 15 for(int i=0;i<len;i++)
  16. 16 {
  17. 17 if(nums[i]<target)
  18. 18 pos++;
  19. 19 else
  20. 20 break;
  21. 21 }
  22. 22 }
  23. 23 return pos;
  24. 24 }
  25. 25 }

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号