有如下两个函数返回 xxx 的所在块,len=xlen = \sqrt{x}len=x
inline int get(int x) { return x / len; }
inline int get(int x) { return (x - 1) / len + 1; }
请问二者有何不同?