摘要:
shell命令解释器查看当前系统下有哪些shell查看当前系统正在使用的shellecho $SHELLbash实用命令ctrl+a //命令的最开头ctrl+e //命令的最末尾ctrl+p //前一个命令ctrl+n //后一个命令ctrl+b //光标向前移动ctrl+f //光标向后移动cr 阅读全文
摘要:
实现代码如下:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct{ char * key; //单词的指针 int ntrans; //解释的个数 char ** trans; //解释的指针数组}WORD, 阅读全文
摘要:
第一阶段:设计结构体struct WORD{ char *key; //先测试单词长度,然后再malloc int ntrans; //记录单词解释个数 char **trans; //指针数组,每个指针都指向一个解释};malloc:11万个结构体数组 每个单词的内容 根据ntrans的个数--> 阅读全文
摘要:
冒泡排序: #include <stdio.h>#include <stdlib.h>#include <time.h>#define N 100000#define M 100000void show_arr(int * a,int n){ int i; for(i = 0; i < n; i++ 阅读全文