当前位置: 编程技术>c/c++/嵌入式
浅析C++中单链表的增、删、改、减
来源: 互联网 发布时间:2014-10-18
本文导语: 首先是是一个简单的例子,单链表的建立和输出。程序1.1 代码如下:#include#includeusing namespace std;struct Student{ string name; string score; Student *next;//定义了指向Candidate类型变量的指针};int main(){ int n;// coutn; int i=1; Student *p=NULL; Stud...
首先是是一个简单的例子,单链表的建立和输出。
程序1.1
#include
#include
using namespace std;
struct Student{
string name;
string score;
Student *next;//定义了指向Candidate类型变量的指针
};
int main(){
int n;//
coutn;
int i=1;
Student *p=NULL;
Student *node=NULL;
Student *head=NULL;
//建立链表
for(;i
程序1.1
代码如下:
#include
#include
using namespace std;
struct Student{
string name;
string score;
Student *next;//定义了指向Candidate类型变量的指针
};
int main(){
int n;//
coutn;
int i=1;
Student *p=NULL;
Student *node=NULL;
Student *head=NULL;
//建立链表
for(;i