论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > C语言程序设计教程
Tag:新手,函数,指针,数据类型,对象,Turbo,入门,运算符,数组,结构,二级,,tc,游戏,试题,问答,编译,视频教程

C语言面试教程_北京某公司的面试题目

文章类别:C语言程序设计 | 发表日期:2011-4-6 9:34:51

5月28日,北京某公司的面试题目,最后一道题目: 
围着桌子座着N个人,从1编号到N,从1号开始报数,报到3的离开桌子,下一个人再从1开始报数,周而复始,直到桌子上剩下一个人为止,问最后一个人的编号是多少? 
以下是我写的小程序,花了我3个小时,希望大家给我些建议,我现在刚开始学习C,也不知道将来能不能靠这个吃饭。谢谢了!!! 
我的Email:haibo-try100@163.com 


#include "stdio.h" 
#include "malloc.h" 
struct MyNode{ 
int num; 
struct MyNode* link; 
}; 
void init_CircleList(struct MyNode *first,int n) 
{ 
struct MyNode *temp; 
int i=0; 
temp=first; 
for(i=1;i<n;i++) 
{ 
temp->num=i; 
temp->link=(struct MyNode*)malloc(sizeof(struct MyNode)); 
temp=temp->link; 
} 
temp->num=n; 
temp->link=first; 
} 
void CircleDelt(int n,struct MyNode *head) 
{ 

struct MyNode *temp,*delenode; 
temp=head; 
while(temp->link->num !=n) 
{ 
temp=temp->link; 
} 
delenode=temp->link; 
temp->link=temp->link->link; 
} 
void CircleLook(struct MyNode *head) 
{ 
struct MyNode *temp; 
temp=head; 
printf("现在围着桌子座的人有:\n"); 
printf("%d",temp->num); 
temp=temp->link; 
while(temp !=head) 
{ 
printf(",%d",temp->num); 
temp=temp->link; 
} 
putchar('\n'); 
} 
int Caculate() 
{ 
struct MyNode head; 
struct MyNode *temp,*tp; 
int totalnum=0,i=0; 
printf("请输入围着桌子座的总人数:"); 
scanf("%d",&totalnum); 
init_CircleList(&head,totalnum); 
// CircleLook(&head); 
temp=&head; 
i=2; 
while(temp->link != temp) 
{
for(;i<=3;i++) 
temp=temp->link; 
printf("删除的人的号码为:%d\n",temp->num); 
tp=temp; 
temp=temp->link; 
CircleDelt(tp->num,tp); 
// CircleLook(temp); 
i=2; 
} 
printf("最后剩下的人的号码为:%d\n",temp->num); 
getchar(); 
return 1; 
} 
int main() 
{ 
int choice; 

while(1) 
{ 
printf("1.Caculate the number lasted in the gived circle \n2.exit\n"); 
scanf("%d",&choice); 

switch (choice){ 
case 1: 
Caculate(); 
break; 
case 2: 
exit(0); 
} 
} 
return 1; 
}

视频教程列表
文章教程搜索
 
C语言程序设计推荐教程
C语言程序设计热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058