约瑟夫循环

#include<stdio.h>#include<stdlib.h>typedef struct N{ int i; struct N* next;}List;int main(void){ List *L,*H,*P,*Q; L=(List *)malloc(sizeof(List)); L->i=1; L->next=NULL; H=L; P=L; int j; int n=0; int k=0; for(j=2;j<=30;j++){ Q=(List *)malloc(sizeof(List))...
默认分类 | 2012-05-10 22:58 | 阅读 1007 次 | 评论 0 条
文章分类
最新评论