首页 > 2014年02月09日 > 全部分享
uva10081 Tight Words(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1022#include #include #include #includ...
分类:其他   时间:2014-02-09 22:23:00    收藏:0  评论:0  赞:0  阅读:385
uva10617 Again Palindrome(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1558#include #include #include #define...
分类:其他   时间:2014-02-09 22:22:10    收藏:0  评论:0  赞:0  阅读:347
2011年广州偏微分方程暑期班试题---随机PDE-可压NS-几何
随机偏微分方程Throughout this section, let $(\Omega, \calF, \calF_t,\ P)$ be a complete filtered probability space satisfying the usual conditions. 1. Recall...
分类:其他   时间:2014-02-09 22:21:20    收藏:0  评论:0  赞:0  阅读:379
Linux 系统维护笔记
Linux安装笔记首先安装vim :yum install vim安装nginx: 需要pcre ,make 编译安装,安装pcre,需要gcc ,gcc-c++ 使用yum install -y gcc gcc-c++;成功安装了pcre 开始安装nginx 提示缺少zlib library ,y...
分类:其他   时间:2014-02-09 22:20:30    收藏:0  评论:0  赞:0  阅读:367
循环查找某文件并删除文件或者文件夹
这是Mac OS下的一条终端命令,很早以前在网上找到的。个人觉得很实用,就保存了下来。现在分享给大家。以CVS这个文件/文件夹为例子:find . -type d -name CVS | xargs rm -fr
分类:其他   时间:2014-02-09 22:19:40    收藏:0  评论:0  赞:0  阅读:375
uva10400 Game Show Math(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1341注意除以0和溢出的情况#include #include #incl...
分类:其他   时间:2014-02-09 22:18:00    收藏:0  评论:0  赞:0  阅读:373
项目管理心得:一个项目经理的个人体会、经验总结(转)
本人做项目经理工作多年,感到做这个工作最要紧的就是要明白什么是因地制宜、因势利导,只有最合适的,没有什么叫对的,什么叫错的,项目经理最忌讳的就是完美主义倾向,尤其是做技术人员出身的,喜欢寻找标准答案,耽误了工作进度,也迷茫了自己。以下是本人一些做项目的个人体会,写出来供大家指点,在讨论过程中共同提高...
分类:其他   时间:2014-02-09 22:18:50    收藏:0  评论:0  赞:0  阅读:374
Patching OIM 11.1.1.5.0 to 11.1.1.5.3
本指南也可以应用到OIM11.1.1.5.1或11.1.1.5.2。 获取修补程序您将需要以下补丁: 1. Patch Name: 13106312Product: Oracle SOA PlatformRelease: 11.1.1.5.0 2. Patch Name: 13704894Produ...
分类:其他   时间:2014-02-09 22:17:10    收藏:0  评论:0  赞:0  阅读:578
一次PostgreSql数据迁移,使用nodejs来完成
用nodejs做postgresql数据迁移
分类:数据库技术   时间:2014-02-09 22:16:20    收藏:0  评论:0  赞:0  阅读:523
C# Winform控件对透明图片重叠时导致图片不透明的解决方法
在Winform中如果将一个透明图片放在窗体上能正常显示透明,但是如果将该图片放在另一个控件上会导致不能显示透明效果。解决这种情况,可以采取在控件上使用GDI+绘画出透明图片。这里我们就以一个pictureBox2控件上面重叠一张png透明图片为例:我们只需要给pictureBox2控件添加Pain...
分类:Windows开发   时间:2014-02-09 22:14:40    收藏:0  评论:0  赞:0  阅读:584
BZOJ 1000 A+B Problem
#include int main(){int a,b; scanf("%d%d",&a,&b); printf("%d",a+b); return 0;}
分类:其他   时间:2014-02-09 22:15:30    收藏:0  评论:0  赞:0  阅读:309
iOS.Assembly
1. iOS Assembly Tutorial: Understanding ARMhttp://www.raywenderlich.com/37181/ios-assembly-tutorial
分类:其他   时间:2014-02-09 22:13:50    收藏:0  评论:0  赞:0  阅读:369
uva10401 Injured Queen Problem(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1342#include #include #include #define...
分类:其他   时间:2014-02-09 22:13:00    收藏:0  评论:0  赞:0  阅读:350
vim的tab缩进及用空格设置
编辑~/.vimrc文件,分别设置用空格而不是用tab,一个tab多少个空格,自动缩进多少宽度,显示行号。set expandtabset tabstop=4set shiftwidth=4set nuset cursorline下次用vim打开文件该设置就生效了。备忘一下以备下次复制粘帖(/etc...
分类:其他   时间:2014-02-09 22:11:20    收藏:0  评论:0  赞:0  阅读:466
uva10304 Optimal Binary Search Tree(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1245#include #include #define ll long ...
分类:其他   时间:2014-02-09 22:09:40    收藏:0  评论:0  赞:0  阅读:349
uva10721 Bar Codes(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1662#include #define ll long longusing...
分类:其他   时间:2014-02-09 22:10:30    收藏:0  评论:0  赞:0  阅读:382
xenserver PXE安装系统错误的解决
刚开始在xenserver里找pxe启动安装系统找了半天,最后在NEW VM里的template里选择other install media 里找到pxe启动,启动之后加载映像,安装到一半又停止了,每次都停在mounting /tmp as tmpfs... done这个位置就不动了。google了...
分类:其他   时间:2014-02-09 22:08:50    收藏:0  评论:0  赞:0  阅读:495
uva348 Optimal Array Multiplication Sequence(DP)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=284水题#include #include #include #inclu...
分类:其他   时间:2014-02-09 22:07:10    收藏:0  评论:0  赞:0  阅读:395
uva10465 Homer Simpson(水题)
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=11&page=show_problem&problem=1406#include using namespace std;int m...
分类:其他   时间:2014-02-09 22:08:00    收藏:0  评论:0  赞:0  阅读:334
染色问题(漂浮思想的应用)
染色问题(color.pas/c/cpp)【题目描述】平面上有n个珠子排成一排, 每个珠子初始颜色为0,你要对他们进行m次染色,每次你选定l和r,然后把[l,r]之间的珠子染成编号c的颜色,每个珠子的最终颜色为它曾经染过的编号最大的颜色,请你写个程序统计每个珠子最终的颜色。【输入格式】第一行两个数n...
分类:其他   时间:2014-02-09 22:06:20    收藏:0  评论:0  赞:0  阅读:403
1212条   上一页 1 ... 4 5 6 7 8 ... 61 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!