摘要:
#include #include void swap(int *a ,int *b) { int tmp = *a; *a = *b; *b = tmp; } void show(int arr[], int len) { assert(arr); assert(len > 0); int i = 0; for (; i 0); ... 阅读全文
摘要:
1.打印乘法口诀表 2.输出区间内[min.max]的素数 4.输出1000到2000之间的瑞年 5.题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 6.有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和。 7.求s 阅读全文
摘要:
public class Sort { public static void main(String[] args) { int data[] = {43,54,123,5,98,10,7,74,5,54}; System.out.println("原先数组:"); for(int d : data) { Syste... 阅读全文
摘要:
以上排序算法的优劣(时间复杂度和空间复杂度对比): 希望你们好好学C,期末取得好成绩 zhangsiman lizhiyuan wangying 阅读全文