免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: 吴秦
打印 上一主题 下一主题

[C] C语言经典题目及解题思路,持续更新中。。。 [复制链接]

论坛徽章:
0
41 [报告]
发表于 2009-11-11 19:57 |只看该作者
mark

论坛徽章:
1
15-16赛季CBA联赛之深圳
日期:2016-07-07 22:34:24
42 [报告]
发表于 2009-11-11 20:31 |只看该作者
学习一下

论坛徽章:
0
43 [报告]
发表于 2009-11-12 10:39 |只看该作者
不错,支持一下

论坛徽章:
0
44 [报告]
发表于 2009-11-12 12:20 |只看该作者
支持一下 !

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
45 [报告]
发表于 2009-12-10 21:50 |只看该作者

回复 #1 吴秦 的帖子

“2、
【问题描述】Armstrong数具有如下特征:一个n位数等于其个位数的n次方之和。如:”

不同意
(int)(pow(temp%10,n));
这个写法

论坛徽章:
0
46 [报告]
发表于 2009-12-11 09:22 |只看该作者
(⊙o⊙)哦  顶

论坛徽章:
0
47 [报告]
发表于 2009-12-15 15:25 |只看该作者

先新增新增三题(创新工场笔试题),以后再按照格式来修改

第一题:将一个英文句子倒置,如“I love you”倒置成“you love i”。(语言任选,下同)
cCode:(以下代码仅是我一家之言)
#include<stdio.h>
#include<string.h>
int main(){

int j=0,i=0,begin,end;


char str[]="i love you",temp;


j=strlen(str)-1;



printf("%s\n",str);


while(j>i){


//The first step reverse the sentence, so the sentence becomes "uoy evol i".


temp=str;


str=str[j];


str[j]=temp;


j--;


i++;


}


printf("%s\n",str);


i=0;


while(str){


//The second step is part reversal,if str is a space then reverse the word.


//So uoy convert to you ...


if(str!=' '){


begin=i;


while(str&&str!=' '){


i++;


}


i=i-1;


end=i;


}


while(end>begin){


temp=str[begin];


str[begin]=str[end];


str[end]=temp;


end--;


begin++;


}


i++;


}


printf("%s\n",str);


return 0;

}

第二题:输入一个整数n,输出大于他的最小质数。
cCode:(以下代码仅是我一家之言)
#include<stdio.h>
#include<math.h>
int main(){

int n,m,s;


printf("please input n:\n");


scanf("%d",&n);


//if n is a even, m equal to n add one is a odd that maybe a prime,


//else m equal to n add two is a odd that mybe a prime.


if(0==n%2)


m=n+1;


else


m=n+2;


while(m){


s=int(sqrt(m));


for(int i=2;i<=s;i++){


if(0==m%i)


break;


}


if(i>s){


//if i greater than s,it means m is a prime


//that the least prime greater than n.



//So output it and break the circle.


printf("%d\n",m);


break;


}


m=m+2;


}


return 0;

}

第三题:编程实现,将一个数组转换成一个二叉排序树。
cCode:(以下代码仅是我一家之言)
#include<stdio.h>
#include<stdlib.h>
typedef struct node{

int data;


struct node *lchild,*rchild;

}BSTNode,*BSTree;
void insertBST(BSTree &bst,BSTNode *p);
void printBST(BSTree bst);
int main(){

int num[5]={3,2,5,1,4};


BSTNode *p;


BSTree bst;


bst=NULL;


for(int i=0;i<5;i++){


p=(BSTNode*)malloc(sizeof(BSTNode));


p->data=num;


p->lchild=NULL;


p->rchild=NULL;


insertBST(bst,p);


}


printBST(bst);


return 0;

}
void insertBST(BSTree &bst,BSTNode *p){

if(!bst)


bst=p;


else if(p->data==bst->data)


return ;


else if(p->data<bst->data)


insertBST(bst->lchild,p);


else


insertBST(bst->rchild,p);

}
void printBST(BSTree bst){

if(!bst)


return;


printBST(bst->lchild);


printf("%d ",bst->data);


printBST(bst->rchild);

}

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
48 [报告]
发表于 2009-12-15 20:58 |只看该作者

回复 #48 吴秦 的帖子

s=int(sqrt(m));

这是什么?
看不懂

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
49 [报告]
发表于 2009-12-15 21:03 |只看该作者

回复 #49 pmerofc 的帖子

这是C++的一种转型方式……

s=int(sqrt(m));
s = static_cast<int>( sqrt(m) );
s = (int)sqrt(m);

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
50 [报告]
发表于 2009-12-15 21:10 |只看该作者

回复 #50 OwnWaterloo 的帖子

哦?那是C++的代码吗
能把C++写的如此象C也真不容易
呵呵
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP