单链表创建,插入,删除,查找,遍历操做

  // Link.cpp : 定义控制台应用程序的入口点。 //单链表 #include "stdafx.h" #include <iostream> #include <complex> using namespace std; typedef struct node { int data;//节点内容 node *next;//下一个节点 }node; //建立单链表 node *c
相关文章
相关标签/搜索