-
Notifications
You must be signed in to change notification settings - Fork 0
/
35.搜索插入位置.php
90 lines (84 loc) · 1.73 KB
/
35.搜索插入位置.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
/*
* @lc app=leetcode.cn id=35 lang=php
*
* [35] 搜索插入位置
*
* https://leetcode-cn.com/problems/search-insert-position/description/
*
* algorithms
* Easy (47.00%)
* Likes: 908
* Dislikes: 0
* Total Accepted: 371.2K
* Total Submissions: 789.7K
* Testcase Example: '[1,3,5,6]\n5'
*
* 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。
*
* 你可以假设数组中无重复元素。
*
* 示例 1:
*
* 输入: [1,3,5,6], 5
* 输出: 2
*
*
* 示例 2:
*
* 输入: [1,3,5,6], 2
* 输出: 1
*
*
* 示例 3:
*
* 输入: [1,3,5,6], 7
* 输出: 4
*
*
* 示例 4:
*
* 输入: [1,3,5,6], 0
* 输出: 0
*
*
*/
// @lc code=start
class Solution
{
/**
* @param Integer[] $nums
* @param Integer $target
* @return Integer
*/
public function searchInsert($nums, $target)
{
// 空数组
if (empty($nums)) {
return 0;
}
// 循环搜索
foreach ($nums as $key => $value) {
// 相等情况
if ($target === $value) {
return $key;
}
// 小于情况,往后找一个
if ($target < $value) {
$result = $key - 1;
if (isset($nums[$result])) {
if ($target > $nums[$result]) {
return $result + 1;
} else {
return $result;
}
} else {
return 0;
}
}
}
// 超出最大值了
return count($nums);
}
}
// @lc code=end