摘要: #ifndef ASYNCIO_WAIT_FOR_H #define ASYNCIO_WAIT_FOR_H #include <asyncio/concept/future.h> #include <asyncio/concept/awaitable.h> #include <asyncio/eve 阅读全文
posted @ 2024-07-12 17:04 DavidJIAN 阅读(3) 评论(0) 推荐(0)
摘要: ```cpp #ifndef ASYNCIO_VOID_VALUE_H #define ASYNCIO_VOID_VALUE_H namespace ASYNCIO_NS { struct VoidValue { }; namespace detail { template<typename T> 阅读全文
posted @ 2024-07-12 17:03 DavidJIAN 阅读(1) 评论(0) 推荐(0)
摘要: #ifndef ASYNCIO_TASK_H #define ASYNCIO_TASK_H #include <asyncio/handle.h> #include <asyncio/event_loop.h> #include <asyncio/result.h> #include <asynci 阅读全文
posted @ 2024-07-12 17:02 DavidJIAN 阅读(5) 评论(0) 推荐(0)
摘要: #ifndef ASYNCIO_STREAM_H #define ASYNCIO_STREAM_H #include <asyncio/event_loop.h> #include <asyncio/selector/event.h> #include <asyncio/noncopyable.h> 阅读全文
posted @ 2024-07-12 17:01 DavidJIAN 阅读(4) 评论(0) 推荐(0)
摘要: ```cpp // // Created by netcan on 2021/11/30. // #ifndef ASYNCIO_START_SERVER_H #define ASYNCIO_START_SERVER_H #include "fmt/core.h" #include <asyncio 阅读全文
posted @ 2024-07-12 17:00 DavidJIAN 阅读(1) 评论(0) 推荐(0)
摘要: #ifndef ASYNCIO_SLEEP_H #define ASYNCIO_SLEEP_H #include <asyncio/task.h> #include <asyncio/noncopyable.h> #include <chrono> namespace ASYNCIO_NS { na 阅读全文
posted @ 2024-07-12 16:59 DavidJIAN 阅读(5) 评论(0) 推荐(0)
摘要: #ifndef ASYNCIO_SCHEDULE_TASK_H #define ASYNCIO_SCHEDULE_TASK_H #include <asyncio/noncopyable.h> #include <asyncio/concept/future.h> namespace ASYNCIO 阅读全文
posted @ 2024-07-12 16:58 DavidJIAN 阅读(37) 评论(0) 推荐(0)
摘要: 贪心算法 分发饼干 力扣题目链接(opens new window) 假设你是一位很棒的家长,想要给你的孩子们一些小饼干。但是,每个孩子最多只能给一块饼干。 对每个孩子 i,都有一个胃口值 g[i],这是能让孩子们满足胃口的饼干的最小尺寸;并且每块饼干 j,都有一个尺寸 s[j] 。如果 s[j] 阅读全文
posted @ 2024-07-12 16:48 DavidJIAN 阅读(38) 评论(0) 推荐(0)
摘要: # leetcode hot 100 哈希 链表 相交链表:找出相交点,可以先计算长度,让较长的链表先走,然后再一起走 反转链表:没什么好说的。迭代和递归都要懂 环形链表:快慢指针一起跑就好了,能碰到就代表有环 环形链表 II:不止要判断是否有环,而且要给出环的入口。先判断有环,有环后再让一个指针从 阅读全文
posted @ 2024-07-12 16:47 DavidJIAN 阅读(117) 评论(0) 推荐(0)