2014年(20)
发布时间:2014-01-31 13:34:52
一、冒泡排序概念: 冒泡排序(Bubble Sort,台湾译为:泡沫排序或气泡排序)是一种简单的排序算法。 它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。 走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经.........【阅读全文】
发布时间:2014-01-31 12:02:29
1.具体问题(问题的解答还有待进一步的完善) (1) 完整代码:#include "stdio.h"struct date { int month; int year; int day; };struct student { int num; char name[16]; struct date birthday;&nbs.........【阅读全文】