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
+1 -1
View File
@@ -13,8 +13,8 @@ struct binarySearchTree {
typedef struct binarySearchTree binarySearchTree;
/* 比较器:从小到大排序 */
int sortIntHelper(const void *a, const void *b) {
// 从小到大排序
return (*(int *)a - *(int *)b);
}