摘要: 3.58 long decode2(long x, long y, long z) { int result = x * (y - z); if((y - z) & 1) result = ~result; return result; } 3.59 这个题考察的是2.3.4和2.3.5节的一个定理 阅读全文
posted @ 2017-10-29 13:12 QiuhaoLi 阅读(5512) 评论(0) 推荐(1) 编辑