说明: 深入理解计算机系统(原书第三版) Tour of Computer Systems • Information is Bits + Context • Programs are translated by other programs • Understand how compilation systems work • Processors read and interpret instructions • Cache matter • Storage devices from a Hier <weixin_44543032> 上传 | 大小:17mb
说明: int Creat(Sqlist &L, int a[], int n)//顺序表的创建 { int i; if (n <= maxSize) { for (i = 0; i<n ; i++) { L.data[i] = a[i]; L.length++; } return 1; } else return 0; } int Show(Sqlist a)//顺序表的遍历 { int i; for (i = 0; i<a.length; i++) { cout << <weixin_41316615> 上传 | 大小:35kb