上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页

2014年12月26日

FHD 4K 8K分辨率

摘要: 4K(2160P,即4096×2160的像素分辨率)和8K(4320P,即7,680 × 4,320的像素分辨率)属于UHDTV。FHD是FULL HD(Full High Definition)的缩写,有人也将其称作是1080P,实际的分辨率则为1920x1080(包括1080i和1080P)。 阅读全文

posted @ 2014-12-26 15:18 lakeone 阅读(1264) 评论(0) 推荐(0) 编辑

2014年12月11日

matlab添加当前路径下的所有子目录

摘要: % 添加当前路径下的所有子目录addpath(genpath(pwd)); 阅读全文

posted @ 2014-12-11 21:41 lakeone 阅读(861) 评论(0) 推荐(0) 编辑

Mac OS安装wget

摘要: curl -Ohttp://ftp.gnu.org/gnu/wget/wget-1.16.1.tar.gztar xvzf wget-1.14.tar.gzcd wget-1.14./configure --with-ssl=opensslmakesudo make install 阅读全文

posted @ 2014-12-11 21:06 lakeone 阅读(130) 评论(0) 推荐(0) 编辑

2014年12月9日

wget 命令用法详解

摘要: wget是在Linux下开发的开放源代码的软件,作者是Hrvoje Niksic,后来被移植到包括Windows在内的各个平台上。它有以下功能和特点:(1)支持断点下传功能;这一点,也是网络蚂蚁和FlashGet当年最大的卖点,现在,Wget也可以使用此功能,那些网络不是太好的用户可以放心了;(2)... 阅读全文

posted @ 2014-12-09 21:30 lakeone 阅读(223) 评论(0) 推荐(0) 编辑

2014年12月7日

UVA 160 - Factors and Factorials

摘要: Factors and FactorialsThe factorial of a numberN(writtenN!) is defined as the product of all the integers from 1 toN. It is often defined recursively ... 阅读全文

posted @ 2014-12-07 21:18 lakeone 阅读(621) 评论(0) 推荐(0) 编辑

2014年12月6日

Uva 642 - Word Amalgamation sort qsort

摘要: Word AmalgamationIn millions of newspapers across the United States there is a word game calledJumble. The object of this game is to solve a riddle, b... 阅读全文

posted @ 2014-12-06 20:45 lakeone 阅读(428) 评论(0) 推荐(0) 编辑

Invalid operator< assertion error解析

摘要: 如果编写的判断式不满足strict weak ordering,就会出现Invalid operator< assertion error错误。网页:http://support.microsoft.com/kb/949171VS(其他编译器还没试过)中,sort函数要求比较函数是strict we... 阅读全文

posted @ 2014-12-06 19:42 lakeone 阅读(226) 评论(0) 推荐(0) 编辑

2014年12月5日

埃拉托色尼筛法 素数

摘要: 运行时间和下式成正比:N+N/2+N/3+N/7+N/11+……#include #include using namespace std;int main(int argc, char* argv[]){ int n; if (argc != 2) { printf("usage:bin n\n... 阅读全文

posted @ 2014-12-05 16:20 lakeone 阅读(478) 评论(0) 推荐(0) 编辑

2014年11月28日

qsort和sort学习与比较

摘要: 阅读另一篇博文Uva 642 - Word Amalgamation sort qsort1.qsort函数:原型:void qsort(void *base, int nelem, int width, int (*fcmp)(const void *,const void *));功能:使用快速... 阅读全文

posted @ 2014-11-28 18:20 lakeone 阅读(175) 评论(0) 推荐(0) 编辑

2014年11月25日

UVA OJ 623 500!

摘要: 500!In these days you can more and more often happen to see programs which perform some useful calculations being executed rather then trivial screen ... 阅读全文

posted @ 2014-11-25 19:54 lakeone 阅读(279) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 17 下一页

导航