摘要: #include <stdio.h>#include <stdlib.h>typedef struct node { int data; struct node *next;} Node; Node *circle_create(int n);void count_off(Node *head, i 阅读全文