單鏈表創建,插入,刪除,查找,遍歷操做

  // Link.cpp : 定義控制檯應用程序的入口點。 //單鏈表 #include "stdafx.h" #include <iostream> #include <complex> using namespace std; typedef struct node { int data;//節點內容 node *next;//下一個節點 }node; //建立單鏈表 node *c
相關文章
相關標籤/搜索