鏈表的建立和遍歷算法

  這篇文章來複習一下數據結構中的鏈表的建立和遍歷。 如下爲實現的代碼: // test.cpp : Defines the entry point for the console application. // #include "StdAfx.h" #include "iostream.h" struct node//定義結點的結構類型 { char data; node *next; };n
相關文章
相關標籤/搜索