|
|
@ -91,15 +91,15 @@ comments: true
|
|
|
|
|
|
|
|
|
|
|
|
```js title="leetcode_two_sum.js"
|
|
|
|
```js title="leetcode_two_sum.js"
|
|
|
|
function twoSumBruteForce(nums, target) {
|
|
|
|
function twoSumBruteForce(nums, target) {
|
|
|
|
let n = nums.length;
|
|
|
|
let n = nums.length;
|
|
|
|
// 两层循环,时间复杂度 O(n^2)
|
|
|
|
// 两层循环,时间复杂度 O(n^2)
|
|
|
|
for (let i = 0; i < n; i++) {
|
|
|
|
for (let i = 0; i < n; i++) {
|
|
|
|
for (let j = i + 1; j < n; j++) {
|
|
|
|
for (let j = i + 1; j < n; j++) {
|
|
|
|
if (nums[i] + nums[j] === target) {
|
|
|
|
if (nums[i] + nums[j] === target) {
|
|
|
|
return [i, j]
|
|
|
|
return [i, j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
@ -205,11 +205,11 @@ comments: true
|
|
|
|
```js title="leetcode_two_sum.js"
|
|
|
|
```js title="leetcode_two_sum.js"
|
|
|
|
function twoSumHashTable(nums, target) {
|
|
|
|
function twoSumHashTable(nums, target) {
|
|
|
|
// 辅助哈希表,空间复杂度 O(n)
|
|
|
|
// 辅助哈希表,空间复杂度 O(n)
|
|
|
|
let m = {}
|
|
|
|
let m = {};
|
|
|
|
// 单层循环,时间复杂度 O(n)
|
|
|
|
// 单层循环,时间复杂度 O(n)
|
|
|
|
for (let i = 0; i < nums.length; i++) {
|
|
|
|
for (let i = 0; i < nums.length; i++) {
|
|
|
|
if (m[nums[i]] !== undefined) {
|
|
|
|
if (m[nums[i]] !== undefined) {
|
|
|
|
return [m[nums[i]], i]
|
|
|
|
return [m[nums[i]], i];
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
m[target - nums[i]] = i;
|
|
|
|
m[target - nums[i]] = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|