摘要: Let's say nums is [10,11,...,19]. Then after nth_element and ordinary partitioning, we might have this (15 is my median): I rewire it so that the firs 阅读全文
posted @ 2017-07-14 22:50 apanda009 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 存在正负情况,处理方式是按正数处理,符号最后在判断,那么我们需要把除数和被除数取绝对值,那么问题就来了:由于整型数INT的取值范围是-2147483648~2147483647,而对-2147483648取绝对值就会超出范围,所以我们需要先转为long long型再取绝对值。那么怎么样找循环呢,肯定 阅读全文
posted @ 2017-07-14 13:54 apanda009 阅读(150) 评论(0) 推荐(0) 编辑