最近在做dm368的开发,打算在368上移植个gst-rtsp-server。先在电脑上折腾了一天,终于是可以运行了。我的虚拟机上早先已经安装了gstreamer-0.10(gstreamer版本太新,有些插件不能用)。gstreamer和base,good,ugly,bad相关插件安装没碰到什么问...
分类:
其他好文 时间:
2015-07-25 12:15:15
阅读次数:
451
>>> import thisThe Zen of Python, by Tim PetersBeautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.Complex is...
分类:
编程语言 时间:
2015-07-24 15:52:17
阅读次数:
126
题目大意:给出一张图,模仿电脑窗口,问有哪些窗口未被其他窗口覆盖。解题思路:水题。按顺序枚举字母,在地图中找到第一个该字母的点,向右向下搜索。最后看能不能构成右下角。唯一要注意的是,窗口可能会嵌套。要判断窗口中有没有其他字母。#include int main() {
char s[110][110];
int n, m;
while (scanf("%d%d...
POJ1338 2545 2591 2247都是一个类型的题目,所以放到一起来总结
POJ1338:Ugly Numbers
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 21708
Accepted: 9708
Description
...
分类:
其他好文 时间:
2015-07-16 12:03:25
阅读次数:
134
类似的一个问题是项目根目录下可能有logs一类的目录,我们希望他人把仓库clone下来的时候能够已经携带了这个目录,但又不希望让这个目录中的日志文件进版本库。之前看到一些项目用了一种比较 ugly 的做法:在logs下建立一个.gitkeep空文件(git 无法版本控制没有任何文件的空目录),然后再...
分类:
其他好文 时间:
2015-07-09 00:47:48
阅读次数:
164
问题描述Ugly number is a number that only have factors 3, 5 and 7.Design an algorithm to find the Kth ugly number. The first 5 ugly numbers are 3, 5, 7, 9, 15 …问题分析这个题,有多种方法求解,常见的是有辅助数据结构,比如priority_queue,...
分类:
其他好文 时间:
2015-07-06 01:32:42
阅读次数:
533
Ugly NumbersTime Limit:1000MSMemory Limit:10000KTotal Submissions:21649Accepted:9680DescriptionUgly numbers are numbers whose only prime factors are 2...
分类:
其他好文 时间:
2015-06-23 15:17:20
阅读次数:
114
Description
Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence
1, 2, 3, 4, 5, 6, 8, 9, 10, 12, ...
shows the first 10 ugly numbers. By convention, 1 is included.
Give...
分类:
其他好文 时间:
2015-06-18 11:39:10
阅读次数:
121
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1010http://poj.org/problem?id=1338首先poj这题要找出第n个丑数,想到要打表,因为每一个丑数都是由前一个丑数*2或者*3或者*5得到,每次取3...
分类:
其他好文 时间:
2015-06-11 16:45:14
阅读次数:
211
The Zen of Python, by Tim PetersBeautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.Complex is better than co...
分类:
编程语言 时间:
2015-05-30 15:16:19
阅读次数:
187