已知一單鏈表中的數據元素含有三類字符:字母、數字和其餘字符。是編寫算法,構造三個循環鏈表,使每一個循環鏈表中只含同一類字符

結構體: struct NodeInt{ int num; struct NodeInt * next; }; struct NodeChar{ char character; struct NodeChar * next; }; struct NodeDouble{ double dou; struct NodeDouble * next; }
相關文章
相關標籤/搜索