摘要: IntersectRect 两矩形相交形成的新矩形The IntersectRect function calculates the intersection of two source rectangles and places the coordinates of the intersecti... 阅读全文
posted @ 2014-06-27 16:36 言止予思 阅读(877) 评论(0) 推荐(0) 编辑
摘要: Compares two Unicode strings. Digits in the strings are considered as numerical content rather than text. This test is not case sensitive.SyntaxintStr... 阅读全文
posted @ 2014-06-27 10:43 言止予思 阅读(839) 评论(0) 推荐(0) 编辑
摘要: 这两个函数的原理都是快速排序,时间复杂度在所有排序中最低,为O(nlog2n) ;sort的应用;1、可以传入两个参数; sort(a,a+N) ,其中a是数组,a+N表示对a[0]至a[N-1]的N个数进行排序(默认从小到大排序);2、传入三个参数; sort(a,a+N,cmp),第三个参数... 阅读全文
posted @ 2014-06-27 10:26 言止予思 阅读(696) 评论(0) 推荐(0) 编辑