原创 約瑟夫環----C鏈表實現

約瑟夫環----C鏈表實現 #include<stdio.h> #include<stdlib.h> struct list{ int data; struct list *next; }; typedef struct