摘要: 开源操作系统课程设计实验报告 GCC —— Matrix SHELL Footscript Ncurse —— menu Kernel FloppyLinux Driver Node & test ... 阅读全文
posted @ 2019-01-13 19:00 UnderScrutiny 阅读(1865) 评论(0) 推荐(0) 编辑
摘要: 实验1:启动一个AWS实例,并且将它改变大小,以及对其进行监控和管理。创建EC2实例 观察实例的参数 更新安全组协议,增加web服务(http协议) 重新定义实例大小:实例的类型和EBS卷 探索EC2的限制 尝试终止保护实验2:创建一个Amazon弹性存储块(Amaz... 阅读全文
posted @ 2019-01-13 13:03 UnderScrutiny 阅读(11423) 评论(0) 推荐(0) 编辑
摘要: BubbleSortvoid BubbleSort(T V[],int n){ for(int i;ii;j--) if(V[j-1]>V[j]){ T temp=V[j-1]; V[j-1]=V[j]; V[j]... 阅读全文
posted @ 2018-11-01 16:32 UnderScrutiny 阅读(90) 评论(0) 推荐(0) 编辑
摘要: #include "assert.h"#include using namespace std;void Sort(int *a,int n){ int i=0,j=0,k=n-1; while(j""> n; int * a= new int[n]; f... 阅读全文
posted @ 2018-05-16 09:09 UnderScrutiny 阅读(136) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;typedef int E;typedef char T;const int maxWeight=1000;class Graph{private: T *verticesList; ... 阅读全文
posted @ 2018-05-09 20:51 UnderScrutiny 阅读(163) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;class Stack{private: int top,maxSize; int *element;public: Stack(int sz){ top=0; m... 阅读全文
posted @ 2018-05-09 18:39 UnderScrutiny 阅读(408) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;const int DefaultVertices=100;const int maxWeight=1000;typedef int E;typedef char T;class Graphm... 阅读全文
posted @ 2018-05-04 23:18 UnderScrutiny 阅读(1207) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;struct TreeNode{ char value; TreeNode *leftChild; TreeNode *rightChild; TreeNode():leftChild(... 阅读全文
posted @ 2018-05-02 20:51 UnderScrutiny 阅读(172) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;const int DefaultVertices=100;const int maxWeight=1000;typedef int E;typedef char T;class Graphm... 阅读全文
posted @ 2018-05-02 20:04 UnderScrutiny 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 稀疏矩阵的压缩存储:实现稀疏矩阵压缩存储,并实现矩阵转置和求和。输入矩阵时,首先需要输入非零元素的个数,然后分别输入矩阵的 行号,列号和值。输完2个矩阵后,自动进行计算第一个矩阵的转置以及两个矩阵的和。例如:输入如下:100 90 5 //矩阵的行数为100,列数为9... 阅读全文
posted @ 2018-05-02 19:27 UnderScrutiny 阅读(671) 评论(0) 推荐(0) 编辑