1 Star 0 Fork 1

陈鹏/leecode with labuladong

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
554.砖墙.c 978 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈鹏 提交于 2022-08-13 22:05 . c练习
/*
* @lc app=leetcode.cn id=554 lang=c
*
* [554] 砖墙
*/
// @lc code=start
// include "uthash.h"
struct HashTable {
int key, val;
UT_hash_handle hh;
};
int leastBricks(int** wall, int wallSize, int* wallColSize){
struct HashTable* cnt = NULL;
for (int i = 0; i < wallSize; ++i)
{
int n = wallColSize[i];
int sum = 0;
for (int j = 0; j < n - 1; ++j)
{
sum += wall[i][j];
struct HashTable* tmp;
HASH_FIND_INT(cnt, &sum, tmp);
if (tmp == NULL)
{
tmp = malloc(sizeof(struct HashTable));
tmp->key = sum, tmp->val = 1;
HASH_ADD_INT(cnt, key, tmp);
} else {
tmp->val++;
}
}
}
int maxCnt = 0;
struct HashTable *cur, *nxt;
HASH_ITER(hh, cnt, cur, nxt) {
maxCnt = fmax(maxCnt, cur->val);
}
return wallSize - maxCnt;
}
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Chan1998/leecode-with-labuladong.git
git@gitee.com:Chan1998/leecode-with-labuladong.git
Chan1998
leecode-with-labuladong
leecode with labuladong
master

搜索帮助