#include <stdio.h> #include <malloc.h> #define N 10 typedef struct Node { int data; struct Node *next; }Node, *LinkedList; void initList(LinkedList *L); int ListInsert(LinkedList *L, int index, int e); int ListDelete(LinkedList *L, int index,…
首先抽象出一个线性表抽象类(包括主要的增删操作) public abstract class MyAbstractList<E> { public abstract void add(E t); public abstract void add(int index,E t); public abstract void remove(); public abstract void remove(int index); public abstract int getCount(); public…
一.简述 [暂无] 二.头文件 #ifndef _2_3_part1_H_ #define _2_3_part1_H_ //2_3_part1.h /** author:zhaoyu email:zhaoyu1995.com@gmail.com date:2016-6-4 note:realize my textbook <<数据结构(C语言版)>> */ //----线性表的单链表存储结构---- /** My Code to make the paragram run corr…