12 2014 档案

Windows中用运行命令直接启动指定软件的方法
摘要:由于习惯了在linux上用终端启动软件,而在windows上习惯于不显示桌面(众多乱七八糟的快捷方式看着就烦),又不想用类似于360桌面管理软件,于是尝试着能否在windows上找到类似的启动方式,最终找到一条捷径^_^首先给你需要快速启动的软件创建一个快捷方式,将快捷方式的名字改为你启动时想输入的... 阅读全文

posted @ 2014-12-27 20:32 Payne_Day 阅读(793) 评论(0) 推荐(0)

Python中的random模块
摘要:Python中的random模块(转载自http://www.cnblogs.com/yd1227/archive/2011/03/18/1988015.html)Python中的random模块用于生成随机数。下面介绍一下random模块中最常用的几个函数。random.randomrandom.... 阅读全文

posted @ 2014-12-21 20:35 Payne_Day 阅读(130) 评论(0) 推荐(0)

迷宫问题
摘要:1 #include 2 #include 3 #include 4 #include "unistd.h" 5 #include 6 #include 7 using namespace std; 8 #define MAX_ROW 20 9 #define MAX_C... 阅读全文

posted @ 2014-12-13 21:22 Payne_Day 阅读(127) 评论(1) 推荐(0)

C/C++ Linux 程序员必须了解的 10 个工具(转)
摘要:1. 基本命令http://mally.stanford.edu/~sr/computing/basic-unix.htmlhttp://pangea.stanford.edu/computing/unix/shell/commands.phphttp://infohost.nmt.edu/tcc/... 阅读全文

posted @ 2014-12-11 19:03 Payne_Day 阅读(110) 评论(0) 推荐(0)

BigInteger之高精度乘法
摘要:(接上篇http://www.cnblogs.com/daipeiwu/p/4134694.html)重写* 1 BigInteger operator * (const BigInteger& b){ 2 BigInteger c,d; 3 c.s.clear();... 阅读全文

posted @ 2014-12-09 19:23 Payne_Day 阅读(470) 评论(0) 推荐(0)

BigInteger之高精度加法
摘要:struct BigIntegerstruct BigInteger { static const int BASE = 100000000; static const int WIDTH = 8; vector s;};重写“=”BigInteger operator = (co... 阅读全文

posted @ 2014-12-01 11:55 Payne_Day 阅读(679) 评论(0) 推荐(0)

导航