摘要:
用单循环链表做的。代码./* 这是约瑟夫环*/#includeusing namespace std;typedef struct node{ int data; struct node* next;}Link;void josephus(int n,int m){ //用循环链表做 Link *head,*tail; int i,j; head=NULL; tail=NULL; for(i=0;idata=i; temp->next=NULL; if(head==NULL) { ... 阅读全文