feat(dart): add forLoopRecur and update HashMapOpenAddressing (#802)

* feat(dart): add forLoopRecur

* feat(dart): update HashMapOpenAddressing
This commit is contained in:
liuyuxin
2023-09-26 11:04:13 +08:00
committed by GitHub
parent e567d08348
commit e3366363b6
3 changed files with 82 additions and 65 deletions

View File

@ -14,6 +14,25 @@ int recur(int n) {
return n + res; return n + res;
} }
/* 使用迭代模拟递归 */
int forLoopRecur(int n) {
// 使用一个显式的栈来模拟系统调用栈
List<int> stack = [];
int res = 0;
// 递:递归调用
for (int i = n; i > 0; i--) {
// 通过“入栈操作”模拟“递”
stack.add(i);
}
// 归:返回结果
while (!stack.isEmpty) {
// 通过“出栈操作”模拟“归”
res += stack.removeLast();
}
// res = 1+2+3+...+n
return res;
}
/* 尾递归 */ /* 尾递归 */
int tailRecur(int n, int res) { int tailRecur(int n, int res) {
// 终止条件 // 终止条件
@ -43,6 +62,9 @@ void main() {
res = tailRecur(n, 0); res = tailRecur(n, 0);
print("\n尾递归函数的求和结果 res = $res"); print("\n尾递归函数的求和结果 res = $res");
res = forLoopRecur(n);
print("\n使用迭代模拟递归求和结果 res = $res");
res = fib(n); res = fib(n);
print("\n斐波那契数列的第 $n 项为 $res"); print("\n斐波那契数列的第 $n 项为 $res");
} }

View File

@ -4,12 +4,7 @@
* Author: liuyuxin (gvenusleo@gmail.com) * Author: liuyuxin (gvenusleo@gmail.com)
*/ */
/* 键值对 */ import 'array_hash_map.dart';
class Pair {
int key;
String val;
Pair(this.key, this.val);
}
/* 链式地址哈希表 */ /* 链式地址哈希表 */
class HashMapChaining { class HashMapChaining {

View File

@ -4,30 +4,21 @@
* Author: liuyuxin (gvenusleo@gmail.com) * Author: liuyuxin (gvenusleo@gmail.com)
*/ */
/* 键值对 */ import 'array_hash_map.dart';
class Pair {
int key;
String val;
Pair(this.key, this.val);
}
/* 开放寻址哈希表 */ /* 开放寻址哈希表 */
class HashMapOpenAddressing { class HashMapOpenAddressing {
late int _size; // 键值对数量 late int _size; // 键值对数量
late int _capacity; // 哈希表容量 int _capacity = 4; // 哈希表容量
late double _loadThres; // 触发扩容的负载因子阈值 double _loadThres = 2.0 / 3.0; // 触发扩容的负载因子阈值
late int _extendRatio; // 扩容倍数 int _extendRatio = 2; // 扩容倍数
late List<Pair?> _buckets; // 桶数组 late List<Pair?> _buckets; // 桶数组
late Pair _removed; // 删除标记 Pair _TOMBSTONE = Pair(-1, "-1"); // 删除标记
/* 构造方法 */ /* 构造方法 */
HashMapOpenAddressing() { HashMapOpenAddressing() {
_size = 0; _size = 0;
_capacity = 4;
_loadThres = 2.0 / 3.0;
_extendRatio = 2;
_buckets = List.generate(_capacity, (index) => null); _buckets = List.generate(_capacity, (index) => null);
_removed = Pair(-1, "-1");
} }
/* 哈希函数 */ /* 哈希函数 */
@ -40,19 +31,42 @@ class HashMapOpenAddressing {
return _size / _capacity; return _size / _capacity;
} }
/* 搜索 key 对应的桶索引 */
int findBucket(int key) {
int index = hashFunc(key);
int firstTombstone = -1;
// 线性探测,当遇到空桶时跳出
while (_buckets[index] != null) {
// 若遇到 key ,返回对应桶索引
if (_buckets[index]!.key == key) {
// 若之前遇到了删除标记,则将键值对移动至该索引
if (firstTombstone != -1) {
_buckets[firstTombstone] = _buckets[index];
_buckets[index] = _TOMBSTONE;
return firstTombstone; // 返回移动后的桶索引
}
return index; // 返回桶索引
}
// 记录遇到的首个删除标记
if (firstTombstone == -1 && _buckets[index] == _TOMBSTONE) {
firstTombstone = index;
}
// 计算桶索引,越过尾部返回头部
index = (index + 1) % _capacity;
}
// 若 key 不存在,则返回添加点的索引
return firstTombstone == -1 ? index : firstTombstone;
}
/* 查询操作 */ /* 查询操作 */
String? get(int key) { String? get(int key) {
int index = hashFunc(key); // 搜索 key 对应的桶索引
// 线性探测,从 index 开始向后遍历 int index = findBucket(key);
for (int i = 0; i < _capacity; i++) { // 若找到键值对,则返回对应 val
// 计算桶索引,越过尾部返回头部 if (_buckets[index] != null && _buckets[index] != _TOMBSTONE) {
int j = (index + i) % _capacity; return _buckets[index]!.val;
// 若遇到空桶,说明无此 key ,则返回 null
if (_buckets[j] == null) return null;
// 若遇到指定 key ,则返回对应 val
if (_buckets[j]!.key == key && _buckets[j] != _removed)
return _buckets[j]!.val;
} }
// 若键值对不存在,则返回 null
return null; return null;
} }
@ -62,42 +76,26 @@ class HashMapOpenAddressing {
if (loadFactor() > _loadThres) { if (loadFactor() > _loadThres) {
extend(); extend();
} }
int index = hashFunc(key); // 搜索 key 对应的桶索引
// 线性探测,从 index 开始向后遍历 int index = findBucket(key);
for (int i = 0; i < _capacity; i++) { // 若找到键值对,则覆盖 val 并返回
// 计算桶索引,越过尾部返回头部 if (_buckets[index] != null && _buckets[index] != _TOMBSTONE) {
int j = (index + i) % _capacity; _buckets[index]!.val = val;
// 若遇到空桶、或带有删除标记的桶,则将键值对放入该桶
if (_buckets[j] == null || _buckets[j] == _removed) {
_buckets[j] = new Pair(key, val);
_size += 1;
return; return;
} }
// 若遇到指定 key ,则更新对应 val // 若键值对不存在,则添加该键值对
if (_buckets[j]!.key == key) { _buckets[index] = new Pair(key, val);
_buckets[j]!.val = val; _size++;
return;
}
}
} }
/* 删除操作 */ /* 删除操作 */
void remove(int key) { void remove(int key) {
int index = hashFunc(key); // 搜索 key 对应的桶索引
// 线性探测,从 index 开始向后遍历 int index = findBucket(key);
for (int i = 0; i < _capacity; i++) { // 若找到键值对,则用删除标记覆盖它
// 计算桶索引,越过尾部返回头部 if (_buckets[index] != null && _buckets[index] != _TOMBSTONE) {
int j = (index + i) % _capacity; _buckets[index] = _TOMBSTONE;
// 若遇到空桶,说明无此 key ,则直接返回 _size--;
if (_buckets[j] == null) {
return;
}
// 若遇到指定 key ,则标记删除并返回
if (_buckets[j]!.key == key) {
_buckets[j] = _removed;
_size -= 1;
return;
}
} }
} }
@ -111,7 +109,7 @@ class HashMapOpenAddressing {
_size = 0; _size = 0;
// 将键值对从原哈希表搬运至新哈希表 // 将键值对从原哈希表搬运至新哈希表
for (Pair? pair in bucketsTmp) { for (Pair? pair in bucketsTmp) {
if (pair != null && pair != _removed) { if (pair != null && pair != _TOMBSTONE) {
put(pair.key, pair.val); put(pair.key, pair.val);
} }
} }
@ -120,10 +118,12 @@ class HashMapOpenAddressing {
/* 打印哈希表 */ /* 打印哈希表 */
void printHashMap() { void printHashMap() {
for (Pair? pair in _buckets) { for (Pair? pair in _buckets) {
if (pair != null) { if (pair == null) {
print("${pair.key} -> ${pair.val}"); print("null");
} else if (pair == _TOMBSTONE) {
print("TOMBSTONE");
} else { } else {
print(null); print("${pair.key} -> ${pair.val}");
} }
} }
} }