mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-17 06:00:58 +00:00
build
This commit is contained in:
@@ -145,14 +145,11 @@ comments: true
|
||||
|
||||
```csharp title="leetcode_two_sum.cs"
|
||||
/* 方法一:暴力枚举 */
|
||||
int[] twoSumBruteForce(int[] nums, int target)
|
||||
{
|
||||
int[] twoSumBruteForce(int[] nums, int target) {
|
||||
int size = nums.Length;
|
||||
// 两层循环,时间复杂度 O(n^2)
|
||||
for (int i = 0; i < size - 1; i++)
|
||||
{
|
||||
for (int j = i + 1; j < size; j++)
|
||||
{
|
||||
for (int i = 0; i < size - 1; i++) {
|
||||
for (int j = i + 1; j < size; j++) {
|
||||
if (nums[i] + nums[j] == target)
|
||||
return new int[] { i, j };
|
||||
}
|
||||
@@ -372,16 +369,13 @@ comments: true
|
||||
|
||||
```csharp title="leetcode_two_sum.cs"
|
||||
/* 方法二:辅助哈希表 */
|
||||
int[] twoSumHashTable(int[] nums, int target)
|
||||
{
|
||||
int[] twoSumHashTable(int[] nums, int target) {
|
||||
int size = nums.Length;
|
||||
// 辅助哈希表,空间复杂度 O(n)
|
||||
Dictionary<int, int> dic = new();
|
||||
// 单层循环,时间复杂度 O(n)
|
||||
for (int i = 0; i < size; i++)
|
||||
{
|
||||
if (dic.ContainsKey(target - nums[i]))
|
||||
{
|
||||
for (int i = 0; i < size; i++) {
|
||||
if (dic.ContainsKey(target - nums[i])) {
|
||||
return new int[] { dic[target - nums[i]], i };
|
||||
}
|
||||
dic.Add(nums[i], i);
|
||||
|
||||
Reference in New Issue
Block a user