素数分解


每一个数都可以分解成素数的乘积,例如 84 = 2 3 5 7 11 13 17 * …

整除


令 x = 2 3 5 7 11 * …

令 y = 2 3 5 7 11 * …

如果 x 整除 y(y mod x == 0),则对于所有 i,mi <= ni。

最大公约数最小公倍数


x 和 y 的最大公约数为:gcd(x,y) = 2 3 5 * …

x 和 y 的最小公倍数为:lcm(x,y) = 2 3 5 * …

1. 生成素数序列

  1. Count Primes (Easy)

Leetcode / 力扣

埃拉托斯特尼筛法在每次找到一个素数时,将能被素数整除的数排除掉。

  1. public int countPrimes(int n) {
  2. boolean[] notPrimes = new boolean[n + 1];
  3. int count = 0;
  4. for (int i = 2; i < n; i++) {
  5. if (notPrimes[i]) {
  6. continue;
  7. }
  8. count++;
  9. // 从 i * i 开始,因为如果 k < i,那么 k * i 在之前就已经被去除过了
  10. for (long j = (long) (i) * i; j < n; j += i) {
  11. notPrimes[(int) j] = true;
  12. }
  13. }
  14. return count;
  15. }

2. 最大公约数

  1. int gcd(int a, int b) {
  2. return b == 0 ? a : gcd(b, a % b);
  3. }

最小公倍数为两数的乘积除以最大公约数。

  1. int lcm(int a, int b) {
  2. return a * b / gcd(a, b);
  3. }

3. 使用位操作和减法求解最大公约数

编程之美:2.7

对于 a 和 b 的最大公约数 f(a, b),有:

  • 如果 a 和 b 均为偶数,f(a, b) = 2*f(a/2, b/2);
  • 如果 a 是偶数 b 是奇数,f(a, b) = f(a/2, b);
  • 如果 b 是偶数 a 是奇数,f(a, b) = f(a, b/2);
  • 如果 a 和 b 均为奇数,f(a, b) = f(b, a-b);

乘 2 和除 2 都可以转换为移位操作。

  1. public int gcd(int a, int b) {
  2. if (a < b) {
  3. return gcd(b, a);
  4. }
  5. if (b == 0) {
  6. return a;
  7. }
  8. boolean isAEven = isEven(a), isBEven = isEven(b);
  9. if (isAEven && isBEven) {
  10. return 2 * gcd(a >> 1, b >> 1);
  11. } else if (isAEven && !isBEven) {
  12. return gcd(a >> 1, b);
  13. } else if (!isAEven && isBEven) {
  14. return gcd(a, b >> 1);
  15. } else {
  16. return gcd(b, a - b);
  17. }
  18. }

进制转换


1. 7 进制

  1. Base 7 (Easy)

Leetcode / 力扣

  1. public String convertToBase7(int num) {
  2. if (num == 0) {
  3. return "0";
  4. }
  5. StringBuilder sb = new StringBuilder();
  6. boolean isNegative = num < 0;
  7. if (isNegative) {
  8. num = -num;
  9. }
  10. while (num > 0) {
  11. sb.append(num % 7);
  12. num /= 7;
  13. }
  14. String ret = sb.reverse().toString();
  15. return isNegative ? "-" + ret : ret;
  16. }

Java 中 static String toString(int num, int radix) 可以将一个整数转换为 radix 进制表示的字符串。

  1. public String convertToBase7(int num) {
  2. return Integer.toString(num, 7);
  3. }

2. 16 进制

  1. Convert a Number to Hexadecimal (Easy)

Leetcode / 力扣

  1. Input:
  2. 26
  3. Output:
  4. "1a"
  5. Input:
  6. -1
  7. Output:
  8. "ffffffff"

负数要用它的补码形式。

  1. public String toHex(int num) {
  2. char[] map = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
  3. if (num == 0) return "0";
  4. StringBuilder sb = new StringBuilder();
  5. while (num != 0) {
  6. sb.append(map[num & 0b1111]);
  7. num >>>= 4; // 因为考虑的是补码形式,因此符号位就不能有特殊的意义,需要使用无符号右移,左边填 0
  8. }
  9. return sb.reverse().toString();
  10. }

3. 26 进制

  1. Excel Sheet Column Title (Easy)

Leetcode / 力扣

  1. 1 -> A
  2. 2 -> B
  3. 3 -> C
  4. ...
  5. 26 -> Z
  6. 27 -> AA
  7. 28 -> AB

因为是从 1 开始计算的,而不是从 0 开始,因此需要对 n 执行 -1 操作。

  1. public String convertToTitle(int n) {
  2. if (n == 0) {
  3. return "";
  4. }
  5. n--;
  6. return convertToTitle(n / 26) + (char) (n % 26 + 'A');
  7. }

阶乘

1. 统计阶乘尾部有多少个 0


  1. Factorial Trailing Zeroes (Easy)

Leetcode / 力扣

尾部的 0 由 2 * 5 得来,2 的数量明显多于 5 的数量,因此只要统计有多少个 5 即可。

对于一个数 N,它所包含 5 的个数为:N/5 + N/5 + N/5 + …,其中 N/5 表示不大于 N 的数中 5 的倍数贡献一个 5,N/5 表示不大于 N 的数中 5 的倍数再贡献一个 5 …。

  1. public int trailingZeroes(int n) {
  2. return n == 0 ? 0 : n / 5 + trailingZeroes(n / 5);
  3. }

如果统计的是 N! 的二进制表示中最低位 1 的位置,只要统计有多少个 2 即可,该题目出自 编程之美:2.2 。和求解有多少个 5 一样,2 的个数为 N/2 + N/2 + N/2 + …

字符串加法减法


1. 二进制加法

  1. Add Binary (Easy)

Leetcode / 力扣

  1. a = "11"
  2. b = "1"
  3. Return "100".
  1. public String addBinary(String a, String b) {
  2. int i = a.length() - 1, j = b.length() - 1, carry = 0;
  3. StringBuilder str = new StringBuilder();
  4. while (carry == 1 || i >= 0 || j >= 0) {
  5. if (i >= 0 && a.charAt(i--) == '1') {
  6. carry++;
  7. }
  8. if (j >= 0 && b.charAt(j--) == '1') {
  9. carry++;
  10. }
  11. str.append(carry % 2);
  12. carry /= 2;
  13. }
  14. return str.reverse().toString();
  15. }

2. 字符串加法

  1. Add Strings (Easy)

Leetcode / 力扣

字符串的值为非负整数。

  1. public String addStrings(String num1, String num2) {
  2. StringBuilder str = new StringBuilder();
  3. int carry = 0, i = num1.length() - 1, j = num2.length() - 1;
  4. while (carry == 1 || i >= 0 || j >= 0) {
  5. int x = i < 0 ? 0 : num1.charAt(i--) - '0';
  6. int y = j < 0 ? 0 : num2.charAt(j--) - '0';
  7. str.append((x + y + carry) % 10);
  8. carry = (x + y + carry) / 10;
  9. }
  10. return str.reverse().toString();
  11. }

相遇问题


1. 改变数组元素使所有的数组元素都相等

  1. Minimum Moves to Equal Array Elements II (Medium)

Leetcode / 力扣

  1. Input:
  2. [1,2,3]
  3. Output:
  4. 2
  5. Explanation:
  6. Only two moves are needed (remember each move increments or decrements one element):
  7. [1,2,3] => [2,2,3] => [2,2,2]

每次可以对一个数组元素加一或者减一,求最小的改变次数。

这是个典型的相遇问题,移动距离最小的方式是所有元素都移动到中位数。理由如下:

设 m 为中位数。a 和 b 是 m 两边的两个元素,且 b > a。要使 a 和 b 相等,它们总共移动的次数为 b - a,这个值等于 (b - m) + (m - a),也就是把这两个数移动到中位数的移动次数。

设数组长度为 N,则可以找到 N/2 对 a 和 b 的组合,使它们都移动到 m 的位置。

解法 1

先排序,时间复杂度:O(NlogN)

  1. public int minMoves2(int[] nums) {
  2. Arrays.sort(nums);
  3. int move = 0;
  4. int l = 0, h = nums.length - 1;
  5. while (l <= h) {
  6. move += nums[h] - nums[l];
  7. l++;
  8. h--;
  9. }
  10. return move;
  11. }

解法 2

使用快速选择找到中位数,时间复杂度 O(N)

  1. public int minMoves2(int[] nums) {
  2. int move = 0;
  3. int median = findKthSmallest(nums, nums.length / 2);
  4. for (int num : nums) {
  5. move += Math.abs(num - median);
  6. }
  7. return move;
  8. }
  9. private int findKthSmallest(int[] nums, int k) {
  10. int l = 0, h = nums.length - 1;
  11. while (l < h) {
  12. int j = partition(nums, l, h);
  13. if (j == k) {
  14. break;
  15. }
  16. if (j < k) {
  17. l = j + 1;
  18. } else {
  19. h = j - 1;
  20. }
  21. }
  22. return nums[k];
  23. }
  24. private int partition(int[] nums, int l, int h) {
  25. int i = l, j = h + 1;
  26. while (true) {
  27. while (nums[++i] < nums[l] && i < h) ;
  28. while (nums[--j] > nums[l] && j > l) ;
  29. if (i >= j) {
  30. break;
  31. }
  32. swap(nums, i, j);
  33. }
  34. swap(nums, l, j);
  35. return j;
  36. }
  37. private void swap(int[] nums, int i, int j) {
  38. int tmp = nums[i];
  39. nums[i] = nums[j];
  40. nums[j] = tmp;
  41. }

多数投票问题


1. 数组中出现次数多于 n / 2 的元素

  1. Majority Element (Easy)

Leetcode / 力扣

先对数组排序,最中间那个数出现次数一定多于 n / 2。

  1. public int majorityElement(int[] nums) {
  2. Arrays.sort(nums);
  3. return nums[nums.length / 2];
  4. }

可以利用 Boyer-Moore Majority Vote Algorithm 来解决这个问题,使得时间复杂度为 O(N)。可以这么理解该算法:使用 cnt 来统计一个元素出现的次数,当遍历到的元素和统计元素不相等时,令 cnt—。如果前面查找了 i 个元素,且 cnt == 0,说明前 i 个元素没有 majority,或者有 majority,但是出现的次数少于 i / 2,因为如果多于 i / 2 的话 cnt 就一定不会为 0。此时剩下的 n - i 个元素中,majority 的数目依然多于 (n - i) / 2,因此继续查找就能找出 majority。

  1. public int majorityElement(int[] nums) {
  2. int cnt = 0, majority = nums[0];
  3. for (int num : nums) {
  4. majority = (cnt == 0) ? num : majority;
  5. cnt = (majority == num) ? cnt + 1 : cnt - 1;
  6. }
  7. return majority;
  8. }

其它


1. 平方数

  1. Valid Perfect Square (Easy)

Leetcode / 力扣

  1. Input: 16
  2. Returns: True

平方序列:1,4,9,16,..

间隔:3,5,7,…

间隔为等差数列,使用这个特性可以得到从 1 开始的平方序列。

  1. public boolean isPerfectSquare(int num) {
  2. int subNum = 1;
  3. while (num > 0) {
  4. num -= subNum;
  5. subNum += 2;
  6. }
  7. return num == 0;
  8. }

2. 3 的 n 次方

  1. Power of Three (Easy)

Leetcode / 力扣

  1. public boolean isPowerOfThree(int n) {
  2. return n > 0 && (1162261467 % n == 0);
  3. }

3. 乘积数组

  1. Product of Array Except Self (Medium)

Leetcode / 力扣

  1. For example, given [1,2,3,4], return [24,12,8,6].

给定一个数组,创建一个新数组,新数组的每个元素为原始数组中除了该位置上的元素之外所有元素的乘积。

要求时间复杂度为 O(N),并且不能使用除法。

  1. public int[] productExceptSelf(int[] nums) {
  2. int n = nums.length;
  3. int[] products = new int[n];
  4. Arrays.fill(products, 1);
  5. int left = 1;
  6. for (int i = 1; i < n; i++) {
  7. left *= nums[i - 1];
  8. products[i] *= left;
  9. }
  10. int right = 1;
  11. for (int i = n - 2; i >= 0; i--) {
  12. right *= nums[i + 1];
  13. products[i] *= right;
  14. }
  15. return products;
  16. }

4. 找出数组中的乘积最大的三个数

  1. Maximum Product of Three Numbers (Easy)

Leetcode / 力扣

  1. Input: [1,2,3,4]
  2. Output: 24
  1. public int maximumProduct(int[] nums) {
  2. int max1 = Integer.MIN_VALUE, max2 = Integer.MIN_VALUE, max3 = Integer.MIN_VALUE, min1 = Integer.MAX_VALUE, min2 = Integer.MAX_VALUE;
  3. for (int n : nums) {
  4. if (n > max1) {
  5. max3 = max2;
  6. max2 = max1;
  7. max1 = n;
  8. } else if (n > max2) {
  9. max3 = max2;
  10. max2 = n;
  11. } else if (n > max3) {
  12. max3 = n;
  13. }
  14. if (n < min1) {
  15. min2 = min1;
  16. min1 = n;
  17. } else if (n < min2) {
  18. min2 = n;
  19. }
  20. }
  21. return Math.max(max1*max2*max3, max1*min1*min2);
  22. }