⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 约瑟夫环的算法_数据结构与算法_数据结构算法_c语言_c 语言之家.htm

📁 严蔚民版的数据结构的完整课件
💻 HTM
📖 第 1 页 / 共 2 页
字号:
                      <TD align=middle style="FONT-SIZE: 9pt" 
                        width="100%">发表日期:2004年11月6日&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;已经有871位读者读过此文</TD></TR>
                    <TR>
                      <TD align=middle width="100%"><!--下面的这一句是设置阅读文本区的宽度-->
                        <TABLE align=center border=0 cellPadding=0 cellSpacing=0 
                        style="TABLE-LAYOUT: fixed" width="90%">
                          <TBODY>
                          <TR>
                            <TD align=middle width="100%"></TD></TR>
                          <TR>
                            <TD style="WORD-WRAP: break-word"><FONT 
                              class=news><BR>
                              <P>上面已有一种约瑟夫环的算法,来来看看我的吧#include 
                              "stdio.h"<BR>#include "malloc.h"<BR>#define M 
                              50</P>
                              <P>typedef struct node{<BR>&nbsp;int 
                              data;<BR>&nbsp;struct node *link;}JD;</P>
                              <P>void Josephu(int n,int s)<BR>{<BR>&nbsp; JD 
                              *h,*p,*q,*r;<BR>&nbsp; int i,j,l[M],k=1;</P>
                              <P>&nbsp; h=(JD*)malloc(sizeof(JD));<BR>&nbsp; 
                              h-&gt;data=1;<BR>&nbsp; r=h;<BR>&nbsp; 
                              for(i=2;i&lt;=n;i++)<BR>&nbsp; {&nbsp; 
                              p=(JD*)malloc(sizeof(JD));<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
                              p-&gt;data=i;<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
                              r-&gt;link=p;<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
                              r=p;<BR>&nbsp; }<BR>&nbsp; r-&gt;link=h;</P>
                              <P>&nbsp; printf("The list is: ");<BR>&nbsp; 
                              p=h;<BR>&nbsp; for(i=1;i&lt;=n;i++)<BR>&nbsp; 
                              {&nbsp; 
                              printf("%d",p-&gt;data);<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
                              p=p-&gt;link;<BR>&nbsp; }<BR>&nbsp; 
                              printf("\n");</P>
                              <P>&nbsp; q=NULL;<BR>&nbsp; p=h;<BR>&nbsp; 
                              j=1;<BR>&nbsp; do<BR>&nbsp; 
                              {<BR>&nbsp;&nbsp;&nbsp; 
                              while(j!=s)<BR>&nbsp;&nbsp;&nbsp;&nbsp; { 
                              j++;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
                              q=p;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
                              p=p-&gt;link;<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
                              }<BR>&nbsp;&nbsp;&nbsp; l[k]=p-&gt;data;</P>
                              <P>&nbsp;&nbsp;&nbsp; 
                              q-&gt;link=p-&gt;link;<BR>&nbsp;&nbsp;&nbsp; 
                              free(p);<BR>&nbsp;&nbsp;&nbsp; p=q-&gt;link;</P>
                              <P>&nbsp;&nbsp;&nbsp; j=1;<BR>&nbsp;&nbsp;&nbsp; 
                              k++;<BR>&nbsp; }while(p-&gt;link!=p);<BR>&nbsp; 
                              l[k]=p-&gt;data;</P>
                              <P>&nbsp; printf("The sort is: ");<BR>&nbsp; 
                              for(i=1;i&lt;=k;i++)<BR>&nbsp;&nbsp;&nbsp; 
                              printf("%d",l[i]);<BR>&nbsp; 
printf("\n");<BR>}</P>
                              <P>main()<BR>{<BR>&nbsp; int n,s;</P>
                              <P>&nbsp; printf("input n and s:");<BR>&nbsp; 
                              scanf("%d,%d",&amp;n,&amp;s);</P>
                              <P>&nbsp; 
                          Josephu(n,s);<BR>}</P><BR></FONT></TD></TR></TBODY></TABLE></TD></TR>
                    <TR>
                      <TD height=25 width="100%">
                        <DIV align=center></DIV></TD></TR>
                    <TR>
                      <TD height=20 width=255><A class=bottom 
                        href="http://www.cstudyhome.com/wenzhang06/review.asp?NewsID=4676" 
                        target=_blank>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<IMG 
                        border=0 height=18 
                        src="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/icon1.gif" 
                        width=18> <FONT color=blue>发表评论</FONT></A> </TD></TR>
                    <TR>
                      <TD width="100%">
                        <HR SIZE=1>
                      </TD></TR>
                    <TR>
                      <TD height=8></TD></TR>
                    <TR>
                      <TD height=18 width="100%"><B>相关专题:</B> 
                    <TR>
                      <TD width="100%">
                        <HR SIZE=1>
                      </TD></TR>
                    <TR>
                      <TD height=8></TD></TR>
                    <TR>
                      <TD height=18 width="100%"><B>相关信息:</B></TD></TR>
                    <TR>
                      <TD height=8></TD></TR>
                    <TR>
                      <TD width="100%">&nbsp;没有相关信息</TD></TR>
                    <TR>
                      <TD width="100%">
                        <HR SIZE=1>
                      </TD></TR>
                    <TR>
                      <TD height=8></TD></TR>
                    <TR>
                      <TD width="100%"><B>相关评论:</B></TD></TR>
                    <TR>
                      <TD height=8></TD></TR>
                    <TR>
                      <TD width="100%"></TD></TR>
                    <TR>
                      <TD>
                        <TABLE border=0 cellPadding=5 cellSpacing=0 
width="100%">
                          <TBODY>
                          <TR bgColor=#d1e4fc>
                            <TD 
                              width="100%">发表人:chyt&nbsp;&nbsp;&nbsp;发表人邮件:<A 
                              href="mailto:chenyuantao@163.com">chenyuantao@163.com</A>&nbsp;&nbsp;&nbsp;发表时间:2004-11-7 
                              20:49:44</TD>
                            <TD width=270>
                              <P align=right></P></TD></TR>
                          <TR>
                            <TD bgColor=#ffffff colSpan=2>好象有点错误<BR>最后的for循环 
                            </TD></TR></TD></TR></TBODY></TABLE>
                        <HR noShade SIZE=1>
                      </TD></TR>
                    <TR>
                      <TD>
                        <TABLE border=0 cellPadding=5 cellSpacing=0 
width="100%">
                          <TBODY>
                          <TR bgColor=#d1e4fc>
                            <TD 
                              width="100%">发表人:louyuchun&nbsp;&nbsp;&nbsp;发表人邮件:<A 
                              href="mailto:louyu1984@163.com">louyu1984@163.com</A>&nbsp;&nbsp;&nbsp;发表时间:2004-11-9 
                              14:47:30</TD>
                            <TD width=270>
                              <P align=right></P></TD></TR>
                          <TR>
                            <TD bgColor=#ffffff colSpan=2>的确有错误诶 
                          </TD></TR></TD></TR></TBODY></TABLE>
                        <HR noShade SIZE=1>
                      </TD></TR>
                    <TR>
                      <TD align=middle height=28 width="100%"><A class=bottom 
                        href="http://www.cstudyhome.com/wenzhang06/review.asp?NewsID=4676" 
                        target=_blank><IMG border=0 height=11 
                        src="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/more.gif" 
                        width=50> <FONT color=blue>更多评论</FONT></A> 
                  </TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<TABLE align=center bgColor=#c1c1c1 border=0 cellPadding=0 cellSpacing=0 
width=750>
  <TBODY>
  <TR>
    <TD>
      <TABLE align=center bgColor=#a7ccfa border=0 cellPadding=0 cellSpacing=0 
      width=748>
        <TBODY>
        <TR>
          <TD background="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/banbg.gif" 
          width=20> </TD>
          <TD background="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/banbg.gif" 
          height=20 width=255></TD>
          <TD background="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/banbg.gif" 
          height=20 width=214><A class=bottom 
            href="http://www.cstudyhome.com/wenzhang06/send.asp?NewsID=4676" 
            target=_blank><IMG border=0 height=16 
            src="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/mail.gif" width=16> 
            将本信息发给好友</A> </TD>
          <TD background="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/banbg.gif" 
          width=168><IMG height=14 
            src="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/printer.gif" 
            width=16><A class=bottom href="javascript:window.print()"> 
          打印本页</A></TD>
          <TD background="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/banbg.gif" 
          width=91><INPUT name=close onclick="window.close();return false;" type=button value=关闭窗口> 
          </TD></TR>
        <TR vAlign=top>
          <TD bgColor=#c1c1c1 height=1 width=20></TD>
          <TD bgColor=#c1c1c1 colSpan=2 height=1 width=469></TD>
          <TD bgColor=#c1c1c1 colSpan=2 height=1 
    width=259></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><!--<IFRAME src="http://www.cpok.com/ad/alp.htm?wangfu" width="760" height=110 marginwidth="0" marginheight="0" frameborder="0" scrolling="no"></IFRAME>--><!--<IFRAME src='http://www.cpok.com/ad/alp.htm?wangfu' width='760' height='124' marginwidth='0' marginheight='0' frameborder='0' scrolling='no'></IFRAME>-->
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=750>
  <TBODY>
  <TR>
    <TD bgColor=#c1c1c1 height=1></TD></TR></TBODY></TABLE>
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 class=p9 width=750>
  <TBODY>
  <TR>
    <TD align=middle 
    background="C:\Documents and Settings\chris\桌面\yzbo\约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files\BACK1(1).gif" 
    height=20>&nbsp;</TD></TR>
  <TR>
    <TD align=middle height=20><A class=bottom 
      href="http://www.cstudyhome.com/wenzhang06/ReadNews.asp?NewsID=4676#" 
      onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.cstudyhome.com/wenzhang06');"><BR>设为首页</A> 
      | <A class=bottom 
      href="http://www.cstudyhome.com/wenzhang06/ReadNews.asp?NewsID=4676#" 
      onclick=window.external.AddFavorite(location.href,document.title);>加入收藏</A> 
      |<A class=bottom 
      href="http://www.cstudyhome.com/wenzhang06/ReadNews.asp?NewsID=1086" 
      target=_blank>广告服务</A>| <A class=bottom 
      href="mailto:louyu1984@163.com">联系我们</A><A class=bottom 
      href="http://www.cstudyhome.com/wenzhang06/admin/login.asp" 
      target=_blank>.</A><BR><BR><BR>版权所有 Copyright &copy; 2002~2004 
  C语言之家<BR></TD></TR><BR>
  <TR></TR></TBODY></TABLE>
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 class=p9 
  width="100%"><TBODY>
  <TR>
    <TD align=middle><!-- <script language=JavaScript>
document.write("<a href='http://www.sunofcn.com/counter13/infolist.asp?admin=dd123'>");
document.write("<img src='http://www.sunofcn.com/counter13/count.asp?admin=dd123&Referer="+escape(top.document.referrer)+"&curURL="+escape(top.document.URL)+"&Width="+escape(screen.width)+"&Height="+escape(screen.height)+"' border=0 width=80 height=30 alt='阳光统计|WWW.SUNOFCN.COM'>");
document.write("</a>");
</script>--></TD></TR></TBODY></TABLE><BR><BR><BR>
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 class=p9 
  width="100%"><TBODY>
  <TR>
    <TD align=middle 
    background="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/bott.gif" height=30 
    width="7%">&nbsp;</TD>
    <TD align=middle 
    background="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/footerbg.gif" height=30 
    width="80%">&nbsp;<FONT 
      color=#dde99f>........................................................................................................</FONT>
      <SCRIPT 
src="约瑟夫环的算法_数据结构与算法_数据结构算法_C语言_C 语言之家.files/Counter.htm"></SCRIPT>
    </TD></TR></TBODY></TABLE>7 </BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -