码迷,mamicode.com
首页 > 其他好文
线性方程组的迭代解法数值结果分析
线性方程组迭代解法 Jacobi G-S SOR CG
分类:其他好文   时间:2014-05-02 17:46:25    阅读次数:316
ecl函数的用法
相关函数fork, execle, execlp, execv, execve, execvpWindows下头文件#include Linux下头文件#include 函数定义int execl(const char *path, const char *arg, ...);函数说明execl()...
分类:其他好文   时间:2014-05-02 17:52:52    阅读次数:674
随感
你那高傲冷艳的姿态已将多少激情拒之门外不喜欢零散的稿纸,只喜欢整本的稿纸就像不喜欢飘零的岁月,只喜欢有一个安稳的归属
分类:其他好文   时间:2014-07-22 22:59:13    阅读次数:144
YY语言
YY语音,又名“歪歪语音”,由广州多玩信息技术有限公司(NASDAQ:YY)研发,是一款基于网络团队语音的通信平台的计算机程式,主要功能是进行在线多人语音聊天,也有截图等一些辅助功能。该款软件的用户群主要集中在中国大陆,大多都用于网络游戏中的团队交流。是魔兽世界、cf等网络游戏玩家经常使用的软件。?...
分类:其他好文   时间:2014-05-02 17:48:34    阅读次数:647
vc6.0 PK vs2010
从VC++6.0不足看VisualC++2010新特性 说起VC,有人想到维生素C(维C),有人想到风险投资(venture capital), 程序员们尤其是做底层开发的程序员或老程序员们第一感觉肯定会想到Visual C++6.0。为什么是6.0而不是其它的版本?这里的原因就不用我再多讲了,因....
分类:其他好文   时间:2014-05-02 17:55:07    阅读次数:400
用fseek和ftell获取文件的大小
#include #include #include int main(int argc,char *argv[]){ int n=0; FILE *fp; if((fp=fopen(argv[1],"r"))==NULL) { perror("fopen");...
分类:其他好文   时间:2014-05-02 18:05:54    阅读次数:308
MEX程序中的mexFunction函数【转】
与C中的main函数一样,MEX程序中的开始函数为mexFunction.默认变量参数是:void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])其中nlhs输出参数数目plhs[]指向输出参数的指针nr...
分类:其他好文   时间:2014-05-02 18:01:35    阅读次数:386
centos 6.4 /var/log/secure 不记录日志的問題
先确保日志服务开启;不妨重启下日志服务;由于目前RHEL 6/centos 6已经使用rsyslog替换了syslog.,所以不要在找/etc/syslog.conf了;重启命令:/etc/init.d/rsyslog restart尝试ssh重新登录進行测试,secure有信息了問題解决
分类:其他好文   时间:2014-05-02 17:59:23    阅读次数:362
codeforces Flipping Game 题解
本题因为数据量小,可以使用暴力法,时间效率是O(n^3) 但是这里巧用最大子段和的思想,可以把时间效率降到O(n) 思想: 1 想使用一个新的数列,计算连续出现了多少个1和连续出现了多少个零 2 求这个新数列的最大子段和 3 Flip最大子段中的 0 和 1, 4 计算出结果 比暴力法复杂很多了,但是时间效率却提高了三个档次。...
分类:其他好文   时间:2014-05-02 10:39:46    阅读次数:584
NYOJ 618 追击
NYOJ 618 追击...
分类:其他好文   时间:2014-05-02 10:37:33    阅读次数:260
codeforces A. Supercentral Point 题解
暴力法可过,效率O(n^2) 但是使用hash表可以把效率降到近乎O(n) 要巧妙使用两个map容器。 要对map和set容器很熟悉了,合起来一起使用。...
分类:其他好文   时间:2014-05-02 10:54:55    阅读次数:365
异常configure: *** apu library not found.
安装modsecurity时,出现“configure: *** apu library not found.”。      解决方法: yum install apr-util-devel...
分类:其他好文   时间:2014-05-02 10:52:44    阅读次数:433
出错mlogc.c:32:23: error: curl/curl.h: No such file or directory
出现下列错误: mlogc.c:32:23: error: curl/curl.h: No such file or directory mlogc.c:1091: error: expected ‘)’ before ‘*’ token mlogc.c: In function ‘logc_init’:      出错原因:缺少libcurl-dev or libcurl-devel ...
分类:其他好文   时间:2014-05-02 10:50:35    阅读次数:371
UVA 之10010 - Where's Waldorf?
Where's Waldorf?  Given a m by n grid of letters, ( ), and a list of words, find the location in the grid at which the word can be found. A word matches a straight, uninterrupted line o...
分类:其他好文   时间:2014-05-02 10:59:15    阅读次数:514
UVA 之401 - Palindromes
A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when the string is read from lef...
分类:其他好文   时间:2014-05-02 10:33:09    阅读次数:332
UVA 之11300 - Spreading the Wealth
Problem A Communist regime is trying to redistribute wealth in a village. They have have decided to sit everyone around a circular table. First, everyone has converted all of their properties to co...
分类:其他好文   时间:2014-05-02 10:30:59    阅读次数:375
UVA 之11729 - Commando War
There is a war and it doesn't look very promising for your country. Now it's time to act. You have a commando squad at your disposal and planning an ambush on an important enemy camp located nearby. Y...
分类:其他好文   时间:2014-05-02 10:28:46    阅读次数:424
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!