原创 運用C語言建立循環單鏈表?

#include<stdio.h> #include<malloc.h> typedef char ElemType; typedef struct LNode { ElemType data; struct LNode *nex