高分在线等~!数据结构:求把指定的链表转成顺序表(线性表)的C语言代码!!
高分在线等~!数据结构:求把指定的链表转成顺序表(线性表)的C语言代码!!
日期:2017-11-02 01:12:19 人气:1
//xieai999
#include <stdio.h>
typedef struct stduy
{
char r[1000];
int len;
}Sqlist;//顺序表
typedef struct edu
{
char e;
struct edu *next;
}LT;//链表
void CreatLT(LT **s,char a[])/