mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-16 15:18:37 +08:00
* Add Russian docs site baseline * Add Russian localized codebase * Polish Russian code wording * Update ru code translation. * Update code translation and chapter covers. * Fix pythontutor extraction. * Add README and landing page. * placeholder of profiles * Use figures of English version * Remove chapter paperbook
50 lines
1.4 KiB
Dart
50 lines
1.4 KiB
Dart
/**
|
|
* File: two_sum.dart
|
|
* Created Time: 2023-2-11
|
|
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
|
*/
|
|
|
|
import 'dart:collection';
|
|
|
|
/* Способ 1: полный перебор */
|
|
List<int> twoSumBruteForce(List<int> nums, int target) {
|
|
int size = nums.length;
|
|
// Два вложенных цикла, временная сложность O(n^2)
|
|
for (var i = 0; i < size - 1; i++) {
|
|
for (var j = i + 1; j < size; j++) {
|
|
if (nums[i] + nums[j] == target) return [i, j];
|
|
}
|
|
}
|
|
return [0];
|
|
}
|
|
|
|
/* Способ 2: вспомогательная хеш-таблица */
|
|
List<int> twoSumHashTable(List<int> nums, int target) {
|
|
int size = nums.length;
|
|
// Вспомогательная хеш-таблица, пространственная сложность O(n)
|
|
Map<int, int> dic = HashMap();
|
|
// Один цикл, временная сложность O(n)
|
|
for (var i = 0; i < size; i++) {
|
|
if (dic.containsKey(target - nums[i])) {
|
|
return [dic[target - nums[i]]!, i];
|
|
}
|
|
dic.putIfAbsent(nums[i], () => i);
|
|
}
|
|
return [0];
|
|
}
|
|
|
|
/* Driver Code */
|
|
void main() {
|
|
// ======= Test Case =======
|
|
List<int> nums = [2, 7, 11, 15];
|
|
int target = 13;
|
|
|
|
// ====== Основной код ======
|
|
// Метод 1
|
|
List<int> res = twoSumBruteForce(nums, target);
|
|
print('Результат метода 1 res = $res');
|
|
// Метод 2
|
|
res = twoSumHashTable(nums, target);
|
|
print('Результат метода 2 res = $res');
|
|
}
|