c++实现双链表
摘要:// Double_List.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include <iostream>#include <fstream>#include "conio.h"using namespace std;struct _DOUBLE_LINK_NODE //定义一个双链表结构{ char * data; struct _DOUBLE_LINK_NODE* prev; //双链表的前驱 struct
阅读全文