数据结构:设计一个算法将一个带头结点的单链表A分解成两个带头结点的单链表A和B程序如下:#include #include typedef struct node{char data;struct node *nextPtr;}*LinkList
2023-09-14