深圳幻海软件技术有限公司 欢迎您!

【LeetCode】1000题挑战(230/1000)

2023-06-05

1000题挑战没有废话,直接开刷!目录1000题挑战没有废话,直接开刷!第一题:242.有效的字母异位词-力扣(Leetcode)题目接口:解题思路:代码:过过过过啦!!!!第二题:257.二叉树的所有路径-力扣(Leetcode)题目接口:解题思路:代码:过过过过啦!!!!第三题:258.各位相加

1000题挑战

没有废话,直接开刷!

目录

1000题挑战

没有废话,直接开刷!

第一题:242. 有效的字母异位词 - 力扣(Leetcode)

题目接口:

解题思路:

代码:

过过过过啦!!!!

第二题:257. 二叉树的所有路径 - 力扣(Leetcode)

题目接口:

解题思路:

代码:

过过过过啦!!!!

第三题:258. 各位相加 - 力扣(Leetcode)

题目接口:

解题思路:

代码:

过过过过啦!!!!

第四题:263. 丑数 - 力扣(Leetcode)

题目接口:

解题思路:

代码:

过过过过啦!!!!

第五题:290. 单词规律 - 力扣(Leetcode)

题目接口:

解题思路:

代码:

过过过过啦!!!!

题量截图:

写在最后:


第一题:242. 有效的字母异位词 - 力扣(Leetcode)

题目接口:

  1. class Solution {
  2. public:
  3. bool isAnagram(string s, string t) {
  4. }
  5. };

解题思路:

这道题有两种思路:

1. 我一开始想到就是哈希

2. 直接排序开摆

代码:

  1. class Solution {
  2. public:
  3. bool isAnagram(string s, string t) {
  4. sort(s.begin(), s.end());
  5. sort(t.begin(), t.end());
  6. return s == t;
  7. }
  8. };

过过过过啦!!!!

第二题:257. 二叉树的所有路径 - 力扣(Leetcode)

题目接口:

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8. * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9. * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10. * };
  11. */
  12. class Solution {
  13. public:
  14. vector<string> binaryTreePaths(TreeNode* root) {
  15. }
  16. };

解题思路:

这道题的可以用dfs也可以用bfs。

我用的是dfs,

具体思路是:

用深搜搜索每一条路径,

如果走到了叶子节点,就把这一条路径记录下来,

搜索完整棵树,所有路径就都出来了。

代码:

  1. /**
  2. * Definition for a binary tree node.
  3. * struct TreeNode {
  4. * int val;
  5. * TreeNode *left;
  6. * TreeNode *right;
  7. * TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8. * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9. * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10. * };
  11. */
  12. class Solution {
  13. public:
  14. vector<string> binaryTreePaths(TreeNode* root) {
  15. vector<string> path;
  16. _tree_path(root, "", path); //dfs搜索
  17. return path;
  18. }
  19. private:
  20. void _tree_path(TreeNode* root, string paths, vector<string>& path) {
  21. if(root != nullptr) {
  22. paths += to_string(root->val);
  23. if(!root->left && !root->right) { //到叶子结点了,就插入路径
  24. path.push_back(paths);
  25. }
  26. else {
  27. paths += "->";
  28. _tree_path(root->left, paths, path); //搜索左子树
  29. _tree_path(root->right, paths, path); //搜索右子树
  30. }
  31. }
  32. }
  33. };

过过过过啦!!!!

第三题:258. 各位相加 - 力扣(Leetcode)

题目接口:

  1. class Solution {
  2. public:
  3. int addDigits(int num) {
  4. }
  5. };

解题思路:

这道题就是一个简单模拟,

不过题目提出了一个挑战,

就是让我们用O(1)的方法解决,

这个其实需要推导出数学公式。

我就只是简单模拟了,下面是代码:

代码:

  1. class Solution {
  2. public:
  3. int addDigits(int num) {
  4. int sum = num;
  5. while(sum > 9) {
  6. sum = 0;
  7. while(num) {
  8. sum += num % 10;
  9. num /= 10;
  10. }
  11. num = sum;
  12. }
  13. return sum;
  14. }
  15. };

过过过过啦!!!!

第四题:263. 丑数 - 力扣(Leetcode)

题目接口:

  1. class Solution {
  2. public:
  3. bool isUgly(int n) {
  4. }
  5. };

解题思路:

这道题需要用到数学方法来做,

作为数学学渣,我就只能用暴力求解了:

代码:

  1. class Solution {
  2. public:
  3. bool isUgly(int n) {
  4. if(n == 0) return false;
  5. while(n % 2 == 0) n /= 2;
  6. while(n % 3 == 0) n /= 3;
  7. while(n % 5 == 0) n /= 5;
  8. return n == 1;
  9. }
  10. };

过过过过啦!!!!

第五题:290. 单词规律 - 力扣(Leetcode)

题目接口:

  1. class Solution {
  2. public:
  3. bool wordPattern(string pattern, string s) {
  4. }
  5. };

解题思路:

这道题需要用哈希去解,

用两个哈希双射,然后遍历,

如果有值对应不上就返回false即可。

代码:

  1. class Solution {
  2. public:
  3. bool wordPattern(string pattern, string s) {
  4. unordered_map<string, char> pas;
  5. unordered_map<char, string> spa;
  6. int n = s.size(), i = 0;
  7. for(auto ch : pattern) {
  8. if(i == n + 1) return false; //两个字符串的个数不匹配
  9. int j = i;
  10. while(j < n && s[j] != ' ') j++; //更新右边界
  11. const string& tmp = s.substr(i, j - i); //截取s里面的字符串
  12. //如果该值存在哈希里面且不等于对应的值,则返回false
  13. if(pas.count(tmp) && pas[tmp] != ch) return false;
  14. if(spa.count(ch) && spa[ch] != tmp) return false;
  15. //把值存进哈希
  16. pas[tmp] = ch;
  17. spa[ch] = tmp;
  18. i = j + 1; //更新左边界
  19. }
  20. return i == n + 1; //两个字符串的个数匹配
  21. }
  22. };

过过过过啦!!!!

题量截图:

写在最后:

以上就是本篇文章的内容了,感谢你的阅读。

如果感到有所收获的话可以给博主点一个哦。

如果文章内容有遗漏或者错误的地方欢迎私信博主或者在评论区指出

文章知识点与官方知识档案匹配,可进一步学习相关知识
算法技能树首页概览47642 人正在系统学习中