01 2022 档案
摘要:1.28课后实验 实验目的:探究一个好的数据结构对链表的影响(本实验为改进代码实验) 😆原代码如下 #include<stdio.h> #include<stdlib.h> typedef struct _node{//定义节点 int value; struct _node *next; }No
阅读全文
摘要:2022.1.27实验 实验目的:探究struct中每个类型内存容量的大小及总内存大小的关系 总实验如下: #include<stdio.h> //对结构的研究 struct structure0 { double a; char b; }; struct structure1 { char a;
阅读全文