-
Notifications
You must be signed in to change notification settings - Fork 0
/
169.多数元素.php
73 lines (67 loc) · 1.32 KB
/
169.多数元素.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
<?php
/*
* @lc app=leetcode.cn id=169 lang=php
*
* [169] 多数元素
*
* https://leetcode-cn.com/problems/majority-element/description/
*
* algorithms
* Easy (66.13%)
* Likes: 1025
* Dislikes: 0
* Total Accepted: 327.6K
* Total Submissions: 495.3K
* Testcase Example: '[3,2,3]'
*
* 给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数 大于 ⌊ n/2 ⌋ 的元素。
*
* 你可以假设数组是非空的,并且给定的数组总是存在多数元素。
*
*
*
* 示例 1:
*
*
* 输入:[3,2,3]
* 输出:3
*
* 示例 2:
*
*
* 输入:[2,2,1,1,1,2,2]
* 输出:2
*
*
*
*
* 进阶:
*
*
* 尝试设计时间复杂度为 O(n)、空间复杂度为 O(1) 的算法解决此问题。
*
*
*/
// @lc code=start
class Solution
{
/**
* @param Integer[] $nums
* @return Integer
*/
public function majorityElement($nums)
{
$total = count($nums);
while (true) {
$a = $nums[0];
$nums = array_values(array_filter($nums, function ($num) use ($a) {
return $num !== $a;
}));
// var_dump($nums);
if (2 * count($nums) < $total || count($nums) === 0) {
return $a;
}
}
}
}
// @lc code=end