Skip to content
败犬日报 2026-04-24

败犬日报 2026-04-24

1. DeepSeek V4 Pro 论文总结(文章)

https://mp.weixin.qq.com/s/ri8gf9EV7K9Lptu5Q5FFTQ

2. AI web search API

https://exa.ai

3. std::priority_queue 没有 reserve 接口

小寄巧,可以继承 std::priority_queue,然后访问 protected 成员变量 c 拿到容器。cppref 里搜“成员对象”。

cpp
struct priority_queue : public std::priority_queue<int> {
    void reserve(int64_t n) { c.reserve(n); }
};