数据结构线性表
夜雨时’
好好学习进大厂
展开
-
数据结构线性表实例-----------图书信息管理系统
#include<iostream>#include<string>using namespace std;typedef struct book{ int ISBN; string name; float price;}Book;typedef struct Node{ Book data; struct Node *next;}LNode;void creatList(LNode *&L){ L=new LNode; L->n.原创 2021-09-26 21:47:09 · 2316 阅读 · 1 评论 -
数据结构线性表实例-------------多项式的合并
#include<iostream>using namespace std;typedef struct Node{ float coef; //系数 int expn; //指数 struct Node *next;}LNode;void createList(LNode *&L,int n){ L=new LNode; L->next=NULL; for(int i=0;i<n;i++) { LNode *.原创 2021-09-25 13:47:51 · 532 阅读 · 0 评论 -
数据结构--------单链表的合并
#include<iostream>using namespace std;#define MAXSIZE 100typedef struct Node{ int data; struct Node *next;}LNode;void creatList(LNode *&L){ L=new LNode; L->next=NULL;}void inputList(LNode *&L,int n){ int i=0; LNode *cp.原创 2021-09-24 11:13:03 · 4266 阅读 · 0 评论 -
数据结构--------顺序表的合并
#include<iostream>using namespace std;#define MAXSIZE 100typedef struct node{ int *elem; int length;}List;void creatList(List &L){ L.elem=new int[MAXSIZE]; L.length=0; return;}void inputList(List &L,int n){ int i=0; for(.原创 2021-09-24 08:56:02 · 503 阅读 · 0 评论 -
数据结构单链表的创建插入及相关操作
#include<iostream>using namespace std;#define MAXSIZE 100typedef struct Node{ int data; struct Node *next;}LNode;void creatList(LNode *&L){ L=new LNode; L->next=NULL;}void inputList(LNode *&L,int n){ int i=0; for(i;i&l.原创 2021-09-23 21:16:49 · 348 阅读 · 0 评论 -
数据结构顺序链表的创建插入及相关操作
#include<iostream>using namespace std;#define MAXSIZE 100#define ERROR 0typedef struct{ int *elem; int length;}List;void creatList(List &L){ L.elem=new int[MAXSIZE]; L.length=0; return;}void inputList(List &L,int n){ int.原创 2021-09-23 21:07:15 · 269 阅读 · 0 评论