摘要: 收藏文章链接:http://blog.csdn.net/hguisu/article/details/7776068 阅读全文
posted @ 2015-01-04 20:31 朱亚男 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 3 int binarySearch(int *array, int length, int num); 4 int main(int argc, const char * argv[]) { 5 6 int array[] = {1, 2, 3, ... 阅读全文
posted @ 2015-01-04 19:31 朱亚男 阅读(246) 评论(0) 推荐(0) 编辑
摘要: #include void bubbleAlgorithmSort(int array[], int arrayCount);int main(int argc, const char * argv[]) { int array[] = {1,3,2,0,5}; int arra... 阅读全文
posted @ 2015-01-04 16:22 朱亚男 阅读(148) 评论(0) 推荐(0) 编辑
摘要: #include int fatorialWithNum(int num);int main(int argc, const char * argv[]) { @autoreleasepool { int result = fatorialWithNum(6); ... 阅读全文
posted @ 2015-01-04 16:20 朱亚男 阅读(119) 评论(0) 推荐(0) 编辑