最新 最热

Leetcode 题目解析之 Majority Element

Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.

2022-02-14
1

C 语言中的 size_t 是什么意思

我知道 size_t 是作为 sizeof 的返回类型,但这个类型到底是什么?干什么用的?

2022-02-10
0

排列组合公式 与24点编程游戏

你有 4 张写有 1 到 9 数字的牌。你需要判断是否能通过 *,/,+,-,(,) 的运算得到 24。

2022-01-27
1

centos查看文件占用空间大小

du -sh * | sort -n : 统计当前文件夹(目录)大小,并按文件大小排序

2022-01-27
1

两个Elaticsearch查询问题分析

这次给大家分享两个Es查询问题的实际案例,分别跟文本匹配和统计查询有关,直接进入正题。

2022-01-18
1

LeetCode 13. 罗马数字转整数(贪心)

字符 数值I 1V 5X 10L 50C 100D 500M 1000例如, 罗马数字 2 写做 II ,即为两个并列...

2022-01-13
1

Leetcode 题目解析之 Merge Sorted Array

Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.

2022-01-09
0

Leetcode 题目解析之 Majority Element II

Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times. The algorithm should run in linear time and in O(1) space.

2022-01-09
1

Leetcode 题目解析之 Majority Element

Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.

2022-01-08
1

更改Android Studio 的log的大小

在File -> Setting 中, 有Override console cycle buffer size可以修改log大小. 建议修改后面加两个0, 100M.

2022-01-08
1