Fine tune the C codes.

This commit is contained in:
krahets
2023-04-17 22:15:06 +08:00
parent c4ea4e39f3
commit af0f92c18d
15 changed files with 29 additions and 103 deletions

View File

@@ -142,5 +142,6 @@ int main() {
if (node)
printf("目标节点值 3 的对应节点对象为 %#p val: %d\r\n", node, node->val);
deleteAll(ht1);
return 0;
}

View File

@@ -82,5 +82,6 @@ int main() {
res = twoSumHashTable(nums, sizeof(nums) / sizeof(int), target, &returnSize);
printf("方法二 res = ");
printArray(res, returnSize);
return 0;
}
}