摘要:
这个是看书上面的一段代码: #include <stdio.h>void swap(int x,int y,char *p){ char temp; temp=p[x]; p[x]=p[y]; p[y]=temp;}void output(char *p,int size){ printf("修整后 阅读全文
摘要:
#include <ctime>#include <cstdlib>#include<stdio.h>int TimeRand()//根据系统时间随机取1-6中的数字{ int t; //seed srand((unsigned)time(NULL)); t = rand() % 6+ 1; // 阅读全文