算法
michael019
这个作者很懒,什么都没留下…
展开
-
不使用中间变量实现变量交换
#include <stdio.h> #include <stdlib.h> void main() { //way1:使用中间变量 int a = 10; int b = 20; printf("交换之前:a=%d b=%d\n", a, b); int temp; temp = a; a = b; b = temp; pri原创 2015-07-13 17:27:40 · 409 阅读 · 0 评论 -
数组元素排序
1.无序数组——顺序查找法,很无语的查找法 2.有序数组——二分查找法#define _CRT_SECURE_NO_WARNINGS#include <stdio.h> #include <stdlib.h> void sortData(int *pArray, int length, int state) { if (state == 0) { } else if原创 2015-07-14 14:04:03 · 508 阅读 · 0 评论