2025年2月14日

LeetCode-84.直方图中最大的矩形

摘要: 一、C实现 1. 参考:https://www.jb51.net/article/217227.htm 2. 实现代码 #include <stdio.h> #include <string.h> #define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0]) 阅读全文

posted @ 2025-02-14 20:36 Hello-World3 阅读(8) 评论(0) 推荐(0)

LeetCode-12.整数转化成罗马数字 & LeetCode-13.罗马数字转化成整数

摘要: 一、整数转化成罗马数字 1. 参考: https://www.jb51.net/article/217252.htm 2. C实现 #include <stdio.h> #include <stdlib.h> #include <ctype.h> #define ARRAY_SIZE(arr) (s 阅读全文

posted @ 2025-02-14 14:59 Hello-World3 阅读(9) 评论(0) 推荐(0)

导航