简单题,模拟栈的操作。#include <stdio.h>#include <stdlib.h>#include <string.h>#define N 10000int main(){ int n,t1,t2,i,j,k; &nbs
组合数学问题,结果是catalan数,公式见http://www.iwebtrados.com.cn/post/213.html唯一要注意的问题是n比较大,需要用大数来处理。为了避免做大数除法,先做了一个小处理。#include <stdio.h>#include <stdlib.h>int gcd1(int a,int b){  
http://www.iwebtrados.com.cn/post/207.html 水题,思路很简单:先计算好存放在数组中,然后查表,估计数量比较小,没有优化查找算法#include <stdio.h>#include <math.h>int main(){ double x[400],t,s=0;
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号