• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            just Programme

            編程是個很長的路程
            posts - 0, comments - 2, trackbacks - 0, articles - 2
              C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

            使用單向循環鏈表實現約瑟夫問題

            Posted on 2006-05-13 16:07 SmallTalk 閱讀(3690) 評論(1)  編輯 收藏 引用 所屬分類: C++小程序

            //Jose.cpp----使用單向循環鏈表實現約瑟夫問題
            //問題描述:n個人手拉手排成一個環,從第一個人開始數,每數到第m個人,第m個人出列,從下一人重新計數重新數,求全部出列后他們的出列順序
            #include <iostream.h>
            struct jose
            {
            ?int data;
            ?int no;
            ?struct jose * next;
            };

            int main()
            {
            ?struct jose *head,*p_curent,*p_find;
            ?int n,m;
            ?cout << "Please enter the total of numbers (n):";
            ?cin >> n;
            ?cout << "Please enter the counter number (m):";
            ?cin >> m;
            ?
            ?//初始化鏈表
            ?head=p_curent=new jose;//標記首表元地址,即頭指針
            ?head->no=1;
            ?cout << "Please enter the first number :";
            ?cin >>head->data;
            ?//形成其余的n-1表元
            ?cout << "Please enter last numbers :"<<endl;
            ?for (int i=2;i<=n;i++)
            ?{
            ??p_curent->next=new jose;
            ??p_curent=p_curent->next;
            ??cin >> p_curent->data;
            ??p_curent->no=i;
            ?}//end for
            ?p_curent->next=head;//尾指針指向頭指針,形成環,到這完成初始化鏈表

            ?//開始查詢,第M個人出列,并輸出
            ?cout << "Now : The? numbers of who will quit the cycle in turn are:"<<endl;
            ?while (n)//全部出列后結束循環
            ?{
            ??//掠過m-1個表元
            ??for (int j=1;j<m;j++)
            ???p_curent=p_curent->next;//end?for
            ??//找到第M個人
            ??p_find=p_curent->next;
            ??//從表中刪除第m個人,并輸出第m個人
            ??p_curent->next=p_find->next;
            ??cout << p_find->data<<endl;
            ??//釋放第m個表元占用的空間
            ??delete p_find;
            ??n--;
            ?}
            ?//end while
            ?
            ?return 0;
            }

            Feedback

            # re: 使用單向循環鏈表實現約瑟夫問題  回復  更多評論   

            2010-04-01 23:52 by 郝竹林
            你這個程序不算完美 看看我寫的 http://blog.renren.com/blog/316635779/454822169
            亚洲国产精品狼友中文久久久 | 91精品国产综合久久香蕉 | 久久天天躁狠狠躁夜夜躁2O2O| 日日狠狠久久偷偷色综合免费 | 久久婷婷五月综合成人D啪| 一本色道久久88精品综合| A狠狠久久蜜臀婷色中文网| 久久黄视频| 无码伊人66久久大杳蕉网站谷歌 | 99久久国语露脸精品国产| 99久久精品这里只有精品 | 91精品国产91热久久久久福利| 青青久久精品国产免费看| 99精品久久精品| 久久久久久久97| 久久一区二区免费播放| 精品久久久久久| 亚洲av成人无码久久精品| 久久久国产精品| 国产精品日韩深夜福利久久| 久久久久AV综合网成人| 国产精品久久久久久久久软件| 青青草国产成人久久91网| 久久久久无码精品国产| 一级做a爰片久久毛片毛片| 久久精品国产99久久香蕉| 99re这里只有精品热久久| 久久人人爽人人爽人人AV| 国产亚洲精久久久久久无码77777| 久久久精品日本一区二区三区| 久久中文字幕一区二区| 72种姿势欧美久久久久大黄蕉| 久久人人爽爽爽人久久久| 午夜精品久久久久久久| 久久精品天天中文字幕人妻| 久久久婷婷五月亚洲97号色 | 狠狠色婷婷综合天天久久丁香| 久久Av无码精品人妻系列| 久久久无码精品亚洲日韩蜜臀浪潮 | 国产成人无码久久久精品一| 婷婷久久久亚洲欧洲日产国码AV|