摘要: C: void moveZeroes(int* nums, int numsSize){ int left = 0,right=0; while(right<numsSize){ if(nums[right]!=0){ int temp = nums[right]; nums[right] = nu 阅读全文
posted @ 2022-03-08 16:21 牛有肉 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 依然是简单题,熟悉 uthash 的使用。终于想通了,为何封装 HASH_ADD 等相关方法时,需要传入指针的指针,因为 uthash 库的实现都是写在宏中的,编译后不是函数调用,而是代码替换! C: #include "stdbool.h" #include <string.h> #include 阅读全文
posted @ 2022-03-08 15:27 牛有肉 阅读(33) 评论(0) 推荐(0) 编辑