随笔分类 - 数据结构
摘要:#include <stdio.h>#include <stdlib.h>#define mSIZE 3#define pSIZE 8static int memery[mSIZE] = {0};static int process[pSIZE] = {0};//static int process[pSIZE] = {2,3,2,1,5,2,4,5,3,2,5,2};//static int process[pSIZE] = {7,10,1,2,10,3,10,4,2,3,10,3,2,1,2,10,1,7,10,1};void build(); //生成一个随机数序
阅读全文