| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 356 人关注过本帖
标题:新人解决老问题,约瑟夫链表问题,指点下吧
只看楼主 加入收藏
xdlearner
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2012-3-7
结帖率:80%
收藏
 问题点数:0 回复次数:0 
新人解决老问题,约瑟夫链表问题,指点下吧
程序代码:
#include <stdio.h>
#include <stdlib.h>
struct node{
    int password;
    int array;
    int exit;
    struct node *next;
};
#define INFEASIBLE -2;
#define OK 0;
typedef struct node linklist;
int ysf(linklist *h,int m,int n){
        linklist *q=h;
        int i,count,ps;
        i=0;
        ps=m;
        while(i<n){
            for(count=0;count<ps;)
                if(q->exit) count++;
            printf("%d",q->array);
            ps=q->password;
            q->exit=0;
        }
        return OK;

 }
int creat(linklist *h,int n){
     int i;
     linklist *p;
     if(h==NULL) return INFEASIBLE;
        for(i=1;i<n;i++){
            p=(linklist*)malloc(sizeof(struct node));
            p->next=h->next;
            p=h->next;
        }
        i=0;
        printf("Please input the password:\n");
            scanf("%d",&h->password);
            h->array=i++;
            h->exit=1;
        for(p=h->next;p!=h;p=p->next){
            scanf("%d",&p->password);
            p->array=i++;
            p->exit=1;
        }
     return OK;

 }
int main(){
    linklist *h;
    int M,N;
    printf("Please input the M and the N:");
    scanf("%d%d",&N,&M);
    h=(linklist*)malloc(sizeof(struct node));
    creat(h,M);
    ysf(h,N,M);
    return 0;
}

 

编译通过了,求给看看
搜索更多相关主题的帖子: next password 约瑟夫 
2012-03-12 21:45
快速回复:新人解决老问题,约瑟夫链表问题,指点下吧
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023315 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved