已知一单链表中的数据元素含有三类字符:字母、数字和其余字符。是编写算法,构造三个循环链表,使每一个循环链表中只含同一类字符

结构体: struct NodeInt{ int num; struct NodeInt * next; }; struct NodeChar{ char character; struct NodeChar * next; }; struct NodeDouble{ double dou; struct NodeDouble * next; }
相关文章
相关标签/搜索