05 2010 档案

有道难题资格赛(1)
摘要:参与人数4849提交次数25797 分数   名次1000  1~239700   ~265...400 ~ 450 编号 标题 分数 通过率 通过人数 提交次数 A 另类的异或 150 29% 3405 11947 B 有道搜索框 300 13% 143... 阅读全文

posted @ 2010-05-30 13:38 cutepig 阅读(790) 评论(0) 推荐(0) 编辑

NSIS and HM NIS Edit
摘要:///NSIS and HM NIS Edit NSIS是一个安装程序制作工具http://hmne.sourceforge.net/index.php#Featureshttp://nsis.sourceforge.net/Main_Page 阅读全文

posted @ 2010-05-29 14:57 cutepig 阅读(740) 评论(0) 推荐(0) 编辑

mingw && code::blocks
摘要:///mingw && code::blockshttp://www.codeblocks.org/downloads/5#windowshttp://gcc.gnu.org/gcc-4.5/cxx0x_status.htmlcode::blocks里面自带了mingw, 但是版本比较旧下面这个链接有可以下载的最新的g++ (v4.5.0)http://www.mingw.org/... 阅读全文

posted @ 2010-05-29 14:56 cutepig 阅读(308) 评论(0) 推荐(0) 编辑

2010有道难题练习赛2
摘要:1 A:与7无关的数 查看提交统计讨论 时间限制: 1000ms 内存限制: 65536kB 描述 一个正整数,如果它能被7整除,或者它的十进制表示法中某个位数上的数字为7,则称其为与7相关的数.现求所有小于等于n(n<100)的与7无关的正整数的平方和. 输入 输入为一行,正整数n,(n<100) 输出 输出小于等于n的与7无关的正整数的平方和 样例输入 样例输出... 阅读全文

posted @ 2010-05-29 11:52 cutepig 阅读(391) 评论(0) 推荐(0) 编辑

android sdk配置
摘要:tools\android.bat update sdkadb kill-serveradb start-serveradb devices或者直接adb shellset ANDROID_SDK_HOME=E:\test\android-sdk-windows\platforms\android-2.0.1PATH I:\tmp\j2sdk1.4.2_17\jre\bin;%path%;E:\t... 阅读全文

posted @ 2010-05-29 11:51 cutepig 阅读(2023) 评论(0) 推荐(0) 编辑

How to create a resizeable dialog box with scroll bars in Visual C++
摘要:How to create a resizeable dialog box with scroll bars in Visual C++http://support.microsoft.com/kb/262954/en-us/ http://msdn.microsoft.com/en-us/library/bb787531%28v=VS.85%29.aspx#wm_paintGetClientRe... 阅读全文

posted @ 2010-05-26 13:17 cutepig 阅读(476) 评论(0) 推荐(0) 编辑

VC UI 界面库
摘要:http://cid-47027e68f36cbaf5.spaces.live.com/blog/cns!47027E68F36CBAF5!308.entryMFC界面库: GUIToolkit 和 SYGUI官网: http://www.beyondata.com/ GUIToolkit http://www.codeproject.com/KB/library/guitoolkit.aspx?... 阅读全文

posted @ 2010-05-25 00:12 cutepig 阅读(22361) 评论(2) 推荐(2) 编辑

2010有道难题练习赛
摘要:http://poj.youdao.com/nanti/ 题目编号 标题 通过率 通过人数 提交次数 A A + B 12% 1608 9483 B Power 7% ... 阅读全文

posted @ 2010-05-24 23:00 cutepig 阅读(575) 评论(0) 推荐(0) 编辑

Longest common subsequence problem
摘要:http://en.wikipedia.org/wiki/Longest_common_subsequence_problemLCS function defined Let two sequences be defined as follows: X = (x1, x2...xm) and Y = (y1, y2...yn). The prefixes of X are X1, 2,...m; ... 阅读全文

posted @ 2010-05-21 20:42 cutepig 阅读(524) 评论(0) 推荐(0) 编辑

活用regex的例子 zz
摘要:在reddit推荐的文章上看到的。下面的代码在CMD窗口下运行通过。如果在BASH下面运行,单引号和双引号要对调。 perl-wle"print'prime'if(1xshift)!~/^1?$|^(11+?)\1+$/"<任意一个数> Python的代码是: importredefis_prime(num):returnnotre.match(r"^1?$|^(11+?)\1+... 阅读全文

posted @ 2010-05-21 19:50 cutepig 阅读(236) 评论(0) 推荐(0) 编辑

最全的design pattern 概述
摘要:http://en.wikipedia.org/wiki/Software_design_patternClassification and list Design patterns were originally grouped into the categories: creational patterns, structural patterns, and behavioral patter... 阅读全文

posted @ 2010-05-21 08:35 cutepig 阅读(673) 评论(0) 推荐(0) 编辑

Create different SDI windows
摘要:Create different SDIwindows1. BOOL CtestMDIApp::InitInstance()CMultiDocTemplate* pDocTemplate;pDocTemplate = new CMultiDocTemplate(IDR_testMDITYPE,RUNTIME_CLASS(CtestMDIDoc),RUNTIME_CLASS(CChildFrame)... 阅读全文

posted @ 2010-05-06 11:24 cutepig 阅读(208) 评论(0) 推荐(0) 编辑

CUsefulSplitterWnd (an extension to CSplitterWnd)
摘要:allows the views in each pane to be changed dynamically using the ReplaceView() method. http://www.codeproject.com/KB/splitter/usefulsplitter.aspx 阅读全文

posted @ 2010-05-06 11:19 cutepig 阅读(227) 评论(0) 推荐(0) 编辑

CMake
摘要:1. write CMakeLists.txtproject (HELLO)#add_subdirectory (Hello) #create lib#add_library (HelloLib 30.cpp) #include_directories (${HELLO_SOURCE_DIR}/Hello)#link_directories (${HELLO_BINARY_DIR}/Hello)#... 阅读全文

posted @ 2010-05-05 17:21 cutepig 阅读(237) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示