对于C Standard Library
可以参考:http://www.acm.uiuc.edu/webmonkeys/book/c_guide/或者http://www.cplusplus.com/reference/(一)
常用函数:1、 三角函数double sin(double);正弦do...
分类:
其他好文 时间:
2014-05-05 10:45:09
阅读次数:
416
题目来源:http://acm.fzu.edu.cn/problem.php?pid=1016分析:图画如下:我们可以 列出方程。1 ) x * cos(a)
+ y * sin(a) = A2 ) x * sin(a ) + y * cos(a) = B对方程 化简为2 = (a + b)...
分类:
其他好文 时间:
2014-05-04 20:54:26
阅读次数:
371
接下来要讲的是我自己曾经做的一个项目中的一个小内容。对于数学表达式的括号检查。比如数学表达式(3+2)*sin(30+((2+1)))+sum[1,(cos(2)),3]是一个正确的表达式,其中一部分是对其表达式中括号的检查。现在给你一个字符串s,如何判断它的括号是否匹配。我们采用压栈的处理方式。遍...
分类:
其他好文 时间:
2014-05-02 13:06:57
阅读次数:
328
1计算.(1) $\dps{ \lim_{x\to
0}\frac{\int_0^{x^2}\sin^\frac{3}{2}t\rd t}{\int_0^xt\sex{t-\sin t}\rd t} }$.解答:
$$\bex \mbox{原式}&=&\lim_{x\to 0}\frac{2x\si...
分类:
其他好文 时间:
2014-05-01 22:39:54
阅读次数:
709
代码:
if((server_fd = accept(sockfd,(struct sockaddr *)&server_addr, &sin_size)) == -1)
{
fprintf(stderr, "Accept error:%s\n\a", strerror(errno));
exit(1);...
分类:
其他好文 时间:
2014-04-30 22:21:38
阅读次数:
765
题目: You are given two linked lists representing two
non-negative numbers. The digits are stored in reverse order and each of their
nodes contain a sin...
分类:
其他好文 时间:
2014-04-30 18:44:23
阅读次数:
428
1. 整函数 (entire function)(1) 定义: 若 $f$ 在 $\bbC$ 上解析,
则称 $f$ 为整函数.(2) 性质: $\dps{f(z)=\sum_{n=0}^\infty c_nz^n,\ 0\leq
|z|<\infty}$.(3) 例: $f(z)=e^z,\sin...
分类:
其他好文 时间:
2014-04-30 04:37:01
阅读次数:
366
Problem F Solve It Input: standard input
Output: standard output Time Limit: 1 second Memory Limit: 32 MB Solve the
equation: p*e-x + q*sin(x) + r*co....
分类:
其他好文 时间:
2014-04-28 19:00:17
阅读次数:
1878