#cpp
Read more stories on Hashnode
Articles with this tag
事情源於一個 error: #include <algorithm> #include <iostream> int main() { int64_t a = 2; std::cout << std::min(1L, a) << std::endl; // mac 上編不過 ...
目標 std::priority_queue 會從最大值開始 pop,但假如我希望可以從最小值拿 ... ? 方法 反元素 假如臨時想不起來後面的做法也暫時沒有 Document 可以查(例如在打比賽??),然後元素又是可以取反元素的那種,那大概可以立刻想出這種臨時的方式: push...
std::enable_shared_from_this · 目標 在 class 的 member function 裡面取得自己的 shared_ptr 或(weak_ptr)。 Example: 把底下的 code 轉成用智慧指標來管理記憶體的版本 struct Node; struct Node...
TL;DR 沒有 Side Effect 的無窮迴圈是未定義行為。 起源 Source: https://twitter.com/PR0GRAMMERHUM0R/status/1623366075357270019/photo/1 可以先猜猜這段 code 會有什麼輸出(x86_64 clang...
2022 FB Hackercup Round2 比賽時只寫出 A1、 D1,A2是賽後補的。進不了 Round3 ,不過名次應該可以拿到 T-shirt。 感想:怎麼兩題都線段樹 🤣 Problem A: Perfectly Balanced Prob...
https://www.facebook.com/codingcompetitions/hacker-cup/2022/round-1 Round1 竟然足足有 1 天時間,本來想下午再寫,但早上 6 點睡不著只好爬起來寫了 A 和 B。 Problem A: Consecutive...