YeeKal

更高效的代码

YeeKal
"#"
  1. 对内置函数的慎用
pow(a, 2); -> a*a

a / b;
c /b;
->
d = 1/b;
d * a;
d * c;
  1. 数据结构

BSP 树 Quad树 R树(rectangle)