相信积累的力量

上一页 1 ··· 4 5 6 7 8 9 下一页
该文被密码保护。 阅读全文
posted @ 2013-06-22 08:52 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
摘要: set nocompatible source $VIMRUNTIME/vimrc_example.vim source $VIMRUNTIME/mswin.vim behave mswin """""""""""""""""""""""""""""""""" 阅读全文
posted @ 2013-06-21 22:32 ThreeF 阅读(793) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-21 10:11 ThreeF 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-21 10:08 ThreeF 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-21 10:00 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-21 09:54 ThreeF 阅读(1) 评论(0) 推荐(0) 编辑
摘要: ---恢复内容开始---#include <windows.h>#include <shobjidl.h> #include <atlbase.h> // Contains the declaration of CComPtr.// {EEA4592E-D18C-4FE1-939F-7A9771B27289}static const GUID IID_IX = { 0xeea4592e, 0xd18c, 0x4fe1, { 0x93, 0x9f, 0x7a, 0x97, 0x71, 0xb2, 0x72, 0x89 } };__interface IX : 阅读全文
posted @ 2013-06-21 08:58 ThreeF 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 炮姐的88行代码,亮瞎了..有待研究#include <windows.h>#include <stdio.h>#include <time.h>#include <conio.h>#include <stdlib.h>char gcText[] = " 1LJTSZ#";struct tetris { int _pool[16][32], (*pool)[32], tmap[8][4][16]; int x, y, s, st, t;}gt;void trsInit() { int sp[8][4] = {{15 阅读全文
posted @ 2013-06-20 20:44 ThreeF 阅读(544) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/Articles/633/Introduction-to-COM-What-It-Is-and-How-to-Use-ItPurpose of this ArticleI have written thistutorialfor programmers who are just starting out inCOMand need some help in understanding the basics. The article briefly covers theCOMspecification, and then explains s 阅读全文
posted @ 2013-06-20 19:22 ThreeF 阅读(279) 评论(0) 推荐(0) 编辑
摘要: #include <windows.h>#include <shobjidl.h> int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, PWSTR pCmdLine, int nCmdShow){ HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE); if (SUCCEEDED(hr)) { IFileOpenDialog *pFileOpen; // Create... 阅读全文
posted @ 2013-06-20 18:50 ThreeF 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 后缀数组就是将字符串所有后缀排序后的数组,设字符串为S,令后缀Suffix(i)表示S[i..len(S)]。用两个数组记录所有后缀的排序结果:Rank[i]记录Suffix(i)排序后的序号,即Suffix[i]在所有后缀中是第Rank[i]小的后缀SA[i]记录第i位后缀的首字母位置,即Suffix[SA[i]]在所有后缀中是第i小的后缀然后就是怎么快速求所有后缀的顺序了,其中的关键是如何减少两个后缀比较的复杂度方法是倍增法,定义一个字符串的k-前缀为该字符串的前k个字符组成的串,关于在k-后缀上的定义Suffix(k,i)、SA[k,i]和Rank[k,i]类似于前,则有若Rank[k, 阅读全文
posted @ 2013-06-20 09:08 ThreeF 阅读(383) 评论(0) 推荐(0) 编辑
摘要: http://blogs.msdn.com/b/vcblog/archive/2009/02/03/rvalue-references-c-0x-features-in-vc10-part-2.aspxPart 1of this series coveredlambdas,auto, andstatic_assert.Today, I'm going to talk aboutrvalue references, which enable two different things:move semanticsandperfect forwarding. This post will b 阅读全文
posted @ 2013-06-20 07:53 ThreeF 阅读(851) 评论(0) 推荐(0) 编辑
摘要: http://www.oschina.net/p/astah随着UML的扩大,UML建模工具也越来越庞大。不过,许多功能并不是用户所寻求的。因此,Astah Professional(原名JUDE) 听取用户心声,根据用户需要打造,按照使用习惯设计,轻便简单,友好易用,用户可以轻松使用它来高速建模,极大的提高了效率。Astah Professional 功能强大,支持 UML1.4中所有图和主要的图形,元模(Meta Model)及属性,全面满足您建模所需,还集成了思维导图,工程合并,协作开发等十余项特色功能,以及许多方便用户的贴心实用的功能。Astah Professional 是100% 阅读全文
posted @ 2013-06-19 21:48 ThreeF 阅读(257) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 16:34 ThreeF 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 16:27 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 16:19 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 16:06 ThreeF 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 16:02 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 15:59 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 15:56 ThreeF 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 15:53 ThreeF 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 15:46 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 15:37 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 15:30 ThreeF 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-18 14:46 ThreeF 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:59 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:54 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:52 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:44 ThreeF 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:40 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:28 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:23 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:18 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:14 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 20:11 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 19:48 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 12:34 ThreeF 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 12:25 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 12:16 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2013-06-17 12:14 ThreeF 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页

相信积累的力量