摘要: cppreference Container Built-in Types Abstract Data Types defined directly by C++ language defined by standard libraty repersents computer hardware fa 阅读全文
posted @ 2021-08-09 17:21 楚不予 阅读(39) 评论(0) 推荐(0)
摘要: C++中的值类别 | stackoverflow | OI-Wiki | cpprefer int foo(int &x){ foo(++x); foo(x++); } 阅读全文
posted @ 2021-08-09 17:20 楚不予 阅读(74) 评论(0) 推荐(0)
摘要: https://tlanyan.pp.ua/cpp-function-modifier-summary/ #include <bits/stdc++.h> using namespace std; #define PI 3.14 typedef int myint int main(){ const 阅读全文
posted @ 2021-08-09 17:19 楚不予 阅读(44) 评论(0) 推荐(0)
摘要: references C++语言文档MS Unresolved questions Do main with parameter:char *argc, char *argv Undefined-behavior Statically-typed language 强类型、弱类型、静态类型、动态类型 阅读全文
posted @ 2021-08-09 17:16 楚不予 阅读(28) 评论(0) 推荐(0)
摘要: 平均时间复杂度 最好情况 最坏情况 空间复杂度 排序方式 稳定性 选择排序 O(n^2) O(n^2) O(n^2) O(1) in-place 不稳定 冒泡排序 O(n^2) O(n) O(n^2) O(1) in-place 稳定 插入排序 O(n^2) O(n) O(n^2) O(1) in- 阅读全文
posted @ 2021-08-09 17:07 楚不予 阅读(45) 评论(0) 推荐(0)
摘要: Polish Calculator Infix->Postfix Rules: number → postfix stack ( → opera stack ) → pop opera stack until ( +-*/ → pop greater or equal priority operat 阅读全文
posted @ 2021-08-09 17:00 楚不予 阅读(36) 评论(0) 推荐(0)