C/C++教程

Leetcode 169. 多数元素

本文主要是介绍Leetcode 169. 多数元素,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

169. 多数元素 - 力扣(LeetCode) (leetcode-cn.com)

 

 

思路 1:

1. 先对所有元素进行排序

2. 返回位于数组最中间的元素

func majorityElement(nums []int) int {
	lenth:=len(nums)
	sort.Ints(nums)
	return nums[lenth/2]
}

  

这篇关于Leetcode 169. 多数元素的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!