上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: 转自http://blog.csdn.net/adream307/article/details/7756481#!/bin/bash#run matlab in command linematlab -nosplash -nodesktop#run m file in command line, ... 阅读全文
posted @ 2015-08-18 11:04 fukan 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 转载自http://mtoou.info/web-pdf/现在将就将用浏览器和在线工具把网页转换为PDF文件的两种方法总结给大家:用浏览器转换这个方法是我认为最简单、高效的,只要您安装了360浏览器或者火狐及Chrome谷歌浏览器就可以轻松实现。下面笔者以360浏览器为例,我们只要在浏览器的右上角点... 阅读全文
posted @ 2015-08-17 21:34 fukan 阅读(13860) 评论(0) 推荐(0) 编辑
摘要: 题意:给一个数a和n个数b1,b2,...,bn。从n个数中选择一些数重新排列成c1,c2,...,cm使得a%c1%c2%...%cm=0.如果能选出则输出最少需要几个数,否则输出-1。分析:首先很重要的一点就是 “一定是先除大的数再除小的数”因为如果先除小的数x,则取模的数一定是在0到x-1中,... 阅读全文
posted @ 2015-08-02 11:31 fukan 阅读(396) 评论(0) 推荐(0) 编辑
摘要: C. Arthur and Tabletime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputArthur has bought a beautiful ... 阅读全文
posted @ 2015-07-30 15:17 fukan 阅读(398) 评论(0) 推荐(0) 编辑
摘要: D. Guess Your Way Out! IItime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputAmr bought a new video ... 阅读全文
posted @ 2015-07-29 17:02 fukan 阅读(321) 评论(0) 推荐(0) 编辑
摘要: C. Amr and Chemistrytime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputAmr loves Chemistry, and spec... 阅读全文
posted @ 2015-07-29 10:04 fukan 阅读(264) 评论(0) 推荐(0) 编辑
摘要: B. Amr and The Large Arraytime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputAmr has got a large arr... 阅读全文
posted @ 2015-07-28 16:17 fukan 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 题意:给两个字符串,判断是否"相等"。这里”相等“的定义是:1、字符串对应字符相同;2、将第一个字符串对半分成c1和d1,第二个字符串对半分成c2和d2。如果c1==c2 && d1==d2 或者c1==d2 && c2==d1则两个字符串相等。当字符串长度为奇数时,只有两个字符串对应字符相同才相等... 阅读全文
posted @ 2015-07-28 13:30 fukan 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 复习数据结构,建树和树的三种遍历二叉排序树的查询,插入二叉排序树插入一个节点,此节点一定是叶子节点#include#include#include#include#include#include#include#include#include#includeusing namespace std;t... 阅读全文
posted @ 2015-07-27 10:03 fukan 阅读(155) 评论(0) 推荐(0) 编辑
摘要: windows操作系统字体文件的存放位置为:C:\Windows\Fontsfrom PIL import Image,ImageFilter,ImageDraw,ImageFontimport random#随机字母def rndChar(): return chr(random.randi... 阅读全文
posted @ 2015-07-19 19:25 fukan 阅读(264) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页