摘要: 完成的任务量1.深入理解计算机系统判断补码相加是否溢出:分为两种情况,正溢出和负溢出int tadd_ok(int x ,int y){ int sum = x + y; int negOverFlow = x<0 && y<0 && sum>0; int posOverFlow = x>0&& y>0 && sum<0; return !negOverFlow&&!posOverFlow; }2.旋转补偿角度,选取中心点后,将图像划分为4个区域,分别补偿。明天任务量1.深入理解 阅读全文
posted @ 2013-01-07 21:08 dutlei 阅读(212) 评论(0) 推荐(0) 编辑