- 博客(6)
- 资源 (3)
- 收藏
- 关注
原创 内部排序
#include <stdlib.h>#include<stdio.h>#define MAX 20typedef int Keytype;typedef struct{ Keytype key;}Redtype;typedef struct{ Redtype r[MAX+1]; int length;}Sqlist;void display(Sqlist &L)...
2018-06-11 15:25:18 166
原创 C++ 查找实验
#include <stdio.h>#include <stdlib.h>#define KEYTYPE int#define MAXSIZE 100typedef struct{ KEYTYPE key;}SSELEMENT;typedef struct{ SSELEMENT r[MAXSIZE];//数据元素存储空间 int...
2018-06-04 15:50:40 413 1
原创 稀疏数组转置
#include<stdio.h>#define MAXSIZE 12500typedef struct{ int i,j;//非零元素的行号,列号 int e;//非零元素的值}Triple;typedef struct{ Triple data[MAXSIZE+1];//非零元素三元组,data[0]未用 int mu,nu,tu;//矩阵的行数,列数,非零...
2018-05-07 15:22:26 233
原创 一元多项式的基本操作
#include <stdio.h>#include <malloc.h>typedef struct lnode{ float cof; int exp; struct lnode *next;}lnode;void creat(lnode *h,int n){ lnode *t,*p; t=h; for(int i=0;i<n;i++) { p=(lnode*)...
2018-04-28 15:40:16 864
原创 栈的基本应用
#include <stdio.h>#include <malloc.h>#define STACK_INIT_SIZE 100#define STACKINCREMENT 10#define OVERLOW -2typedef int SDataType;typedef int Status;typedef struct{ SDataType *base; SDataTy...
2018-04-28 15:37:44 137
原创 串的实现
#include<stdio.h>#include<malloc.h>#include<string.h>typedef struct{ char *ch; int length;}string;int inistring(string *s){ char p[254]; int len; scanf("%s",p); len=strlen(p...
2018-04-28 15:31:25 414
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人