#include "malloc.h"#include "stdio.h"#define LEN sizeof(struct student) typedef struct student{ int num; int age; float score; struct student *next;}s ...
分类:
编程语言 时间:
2018-05-10 19:29:57
阅读次数:
159
实验一 动态链表的设计与应用 1.随机产生或键盘输入一组元素,建立一个带头结点的单向链表(无序)。 2.遍历单向链表。 3.把单向链表中元素逆置(不允许申请新的结点空间)。 4.在单向链表中删除所有的偶数元素结点。 5.编写在非递减有序链表中插入一个元素使链表元素仍有序的函数,并利用该函数建立一个非 ...
分类:
其他好文 时间:
2018-05-07 15:31:08
阅读次数:
267
LinkedList是用动态链表进行存储的,而ArrayList是动态数组存储的。 一、如果对数组进行查询、设置等操作,用ArrayList比较快,方法为get()和set()。 二、如果对数据进行增加、移动等操作,用LinkedList比较快,方法有大的()和remove()。 LinkedLis ...
分类:
编程语言 时间:
2017-09-30 00:35:45
阅读次数:
229
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 using namespace std; 9 const int N = 1000; 10 11 struct weapon{ 12 int ... ...
分类:
其他好文 时间:
2017-08-15 21:10:25
阅读次数:
137
参考内容地址:http://www.importnew.com/16433.html 参考内容地址:http://www.cnblogs.com/start1225/p/6690282.html 参考内容地址:http://www.cnblogs.com/ydpvictor/archive/2012 ...
分类:
编程语言 时间:
2017-08-07 12:02:23
阅读次数:
195
题目链接:http://ica.openjudge.cn/struct/3/ 利用动态链表记录从标准输入输入的学生信息(学号、姓名、性别、年龄、得分、地址) 其中,学号长度不超过20, 姓名长度不超过40, 性别长度为1, 地址长度不超过40 这个题目主要是输入格式不明确,我也不知道测试数据到底要什 ...
分类:
其他好文 时间:
2017-07-27 20:09:32
阅读次数:
300
C++ 动态链表 用类写的 头文件代码: 1 #include<iostream> 2 #include<string> 3 //动态创建链表 4 using namespace std; 5 class LNode { 6 private: 7 string StudentNum; 8 strin ...
分类:
编程语言 时间:
2017-05-01 20:50:34
阅读次数:
173
主要功能的实现: #include "SeqList.h" void InitSeqList(SeqList * pSeq)//初始化 { assert(pSeq); pSeq->array = (DataType*)malloc(sizeof(DataType)*DEFAULT_CAPICITY) ...
分类:
编程语言 时间:
2017-04-21 09:37:26
阅读次数:
216