用MFC开发Ribbon界面,屈指算来约有一载,曾想抛弃杂念细心梳理总结。无奈迫于生计,忙于奔波,未能如愿。兹截取数屏聊以慰籍。阅读全文>
发表于 @ 2008年11月05日 20:16:00|评论(loading...)|举报|收藏
曲线阅读全文>
发表于 @ 2008年11月05日 19:59:00|评论(loading...)|举报|收藏
Quick SortAlgorithm
Quick sort uses divide-conquer-combine stratage to sort array in place.namespace{ int gSize = 0; int partation(int arr[], int nStart, int nEnd) { int pivot = arr[nEnd]; int pos = nStart - 1; for(int i=nStart; i阅读全文>
发表于 @ 2008年11月05日 19:49:00|评论(loading...)|举报|收藏