摘要:
极角是极坐标系中的角度 我们对这个角度进行点的排序 利用类的概念设置结构体 #include <bits/stdc++.h> using namespace std; typedef long long LL; const int N = 101001; const LL INF = 0x3f3f3 阅读全文
摘要:
了不起的分支和循环!! 选择 if elif elif else python 可以有效的防止else悬挂问题 条件表达式 small = x if x < y else y == if x < y: small = x else : small = y 断言 assert 用于插入检查点特别有用 阅读全文