当前位置:   article > 正文

每日5题Day10 - LeetCode 46 - 50

每日5题Day10 - LeetCode 46 - 50

每一步向前都是向自己的梦想更近一步,坚持不懈,勇往直前!

第一题:46. 全排列 - 力扣(LeetCode)

  1. class Solution {
  2. //这道题就是一个dfs
  3. //把所有结果遍历,到叶子节点就可以添加结果了
  4. List<Integer> path = new ArrayList<>();
  5. List<List<Integer>> res = new ArrayList<>();
  6. public List<List<Integer>> permute(int[] nums) {
  7. //要给一个flag数组来判断是否被选过
  8. //以此来成为排列、不是组合
  9. int[] flag = new int[nums.length];
  10. traversal(0, nums, flag);
  11. return res;
  12. }
  13. private void traversal(int startindex, int[] nums, int[] flag){
  14. if(startindex == nums.length){
  15. res.add(new ArrayList(path));
  16. return;
  17. }
  18. for(int i = 0; i < nums.length; i++){
  19. if(flag[i] == 0){
  20. flag[i] = 1;
  21. path.add(nums[i]);
  22. traversal(startindex + 1, nums, flag);
  23. path.removeLast();
  24. flag[i] = 0;
  25. }
  26. }
  27. }
  28. }

第二题:47. 全排列 II - 力扣(LeetCode)

  1. class Solution {
  2. List<List<Integer>> res = new ArrayList<>();
  3. List<Integer> path = new ArrayList<>();
  4. public List<List<Integer>> permuteUnique(int[] nums) {
  5. Arrays.sort(nums);
  6. int[] flag = new int[nums.length];
  7. traversal(0, res, path, nums, flag);
  8. return res;
  9. }
  10. private void traversal(int start, List<List<Integer>> res, List<Integer> path, int[] nums, int[] flag){
  11. if(start == nums.length){
  12. res.add(new ArrayList<>(path));
  13. return;
  14. }
  15. for(int i = 0; i < nums.length; i++){
  16. //和上一题一样,但是数组会有重复的,
  17. //所以我们要剪枝去重
  18. if(flag[i] == 1 || (i > 0 && nums[i] == nums[i - 1] && flag[i - 1] == 0)){
  19. continue;
  20. }
  21. flag[i] = 1;
  22. path.add(nums[i]);
  23. traversal(start + 1, res ,path, nums, flag);
  24. path.removeLast();
  25. flag[i] = 0;
  26. }
  27. }
  28. }

第三题:48. 旋转图像 - 力扣(LeetCode)

  1. class Solution {
  2. public void rotate(int[][] matrix) {
  3. //题目要求不能复制来实现,要原地调转,
  4. //所以不能笨笨地复制粘贴,那样会用很多额外空间
  5. int n = matrix.length;
  6. // 先沿对角线翻转
  7. for (int i = 0; i < n; i++) {
  8. for (int j = i + 1; j < n; j++) {
  9. int temp = matrix[i][j];
  10. matrix[i][j] = matrix[j][i];
  11. matrix[j][i] = temp;
  12. }
  13. }
  14. // 再沿中线左右翻转
  15. for (int i = 0; i < n; i++) {
  16. for (int j = 0; j < n / 2; j++) {
  17. int temp = matrix[i][j];
  18. matrix[i][j] = matrix[i][n - 1 - j];
  19. matrix[i][n - 1 - j] = temp;
  20. }
  21. }
  22. }
  23. }

第四题:49. 字母异位词分组 - 力扣(LeetCode)

  1. class Solution {
  2. public List<List<String>> groupAnagrams(String[] strs) {
  3. // 朴素的做法,时间长但是空间非常小
  4. // 使用 flag 数组标记已经处理过的字符串
  5. int[] flag = new int[strs.length];
  6. // 结果列表
  7. List<List<String>> res = new ArrayList<>();
  8. // 遍历每个字符串
  9. for(int i = 0; i < strs.length; i++){
  10. // 如果当前字符串已经处理过,直接跳过
  11. if(flag[i] == 1){
  12. continue;
  13. }
  14. // 临时列表,用于存放同一组异位词
  15. List<String> tmp = new ArrayList<>();
  16. // 统计当前字符串的字符频率
  17. int[] fre = new int[26];
  18. for(int j = 0; j < strs[i].length(); j++){
  19. fre[strs[i].charAt(j) - 'a']++;
  20. }
  21. // 遍历剩余字符串,寻找异位词
  22. for(int k = i; k < strs.length; k++){
  23. int flagg = 0;
  24. // 如果当前字符串已经处理过,直接跳过
  25. if(flag[k] == 1){
  26. continue;
  27. }
  28. // 统计当前遍历到的字符串的字符频率
  29. int[] free = new int[26];
  30. for(int j = 0; j < strs[k].length(); j++){
  31. free[strs[k].charAt(j) - 'a']++;
  32. }
  33. // 检查是否为异位词
  34. for(int x = 0; x < 26; x++){
  35. if(fre[x] != free[x]){
  36. flagg = 1;
  37. break;
  38. }
  39. }
  40. // 如果是异位词,则加入临时列表,并标记已处理
  41. if(flagg == 0){
  42. tmp.add(strs[k]);
  43. flag[k] = 1;
  44. }
  45. }
  46. // 将当前异位词组加入结果列表
  47. res.add(tmp);
  48. }
  49. return res;
  50. }
  51. }

 第五题:50. Pow(x, n) - 力扣(LeetCode)

  1. class Solution {
  2. public double myPow(double x, int n) {
  3. // 这道题最适合就是使用递归来实现
  4. // 如果指数为0,则结果为1
  5. if(n == 0) {
  6. return 1.0;
  7. }
  8. // 如果指数为负数,则将底数取倒数,指数取绝对值
  9. if(n < 0) {
  10. return 1 / (x * myPow(x, -(n + 1)));
  11. }
  12. // 如果指数为正数,则使用递归计算幂
  13. double temp = myPow(x, n / 2);
  14. // 如果指数为偶数,则结果为 temp 的平方
  15. if(n % 2 == 0) {
  16. return temp * temp;
  17. } else { // 如果指数为奇数,则结果为 temp 的平方乘以底数
  18. return temp * temp * x;
  19. }
  20. }
  21. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/615488
推荐阅读
相关标签
  

闽ICP备14008679号