当前位置:   article > 正文

力扣 两数之和

力扣 两数之和

致每一个初学算法的你。

题目

时间复杂度:O(N^2),

空间复杂度:O(1) 。

  1. class Solution {
  2. public int[] twoSum(int[] nums, int target) {
  3. int n = nums.length;
  4. for (int i = 0; i < n; ++i) {
  5. for (int j = i + 1; j < n; ++j) {
  6. if (nums[i] + nums[j] == target) {
  7. return new int[] { i, j };
  8. }
  9. }
  10. }
  11. return new int[0];
  12. }
  13. }

时间复杂度:O(N),

空间复杂度:O(N)。

  1. class Solution {
  2. public int[] twoSum(int[] nums, int target) {
  3. Map<Integer, Integer> m = new HashMap<>();
  4. for(int i = 0; i< nums.length; i++) {
  5. if(m.containsKey(target - nums[i])) {
  6. return new int[] {m.get(target-nums[i]),i};
  7. }
  8. m.put(nums[i], i);
  9. }
  10. return new int[0];
  11. }
  12. }

 

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

闽ICP备14008679号