码迷,mamicode.com
首页 >  
搜索关键字:begin    ( 8626个结果
uva 12657 - Boxes in a Line(AC和TLE的区别,为什么说STL慢..)
用STL中的list写的,TLE #include #include #include #include #include using namespace std; list l; list::iterator it1,it2,it3,it4,it5,it; void work(int a,int a1=1,int a2=1) { it1=find(l.begin(),l.end(...
分类:其他好文   时间:2014-07-26 17:23:02    阅读次数:815
^ 符号的特殊用法
begin ShowMessage(IntToStr(Byte(^A))); {1} ShowMessage(IntToStr(Integer(^b))); {2} ShowMessage(IntToStr(Integer(^^))); {30} ShowMessage(IntToStr(Int.....
分类:其他好文   时间:2014-07-26 01:39:36    阅读次数:213
libgdx 3D 瞄准星和隐藏鼠标
1. 瞄准星 1 /**画瞄准星*/ 2 private void drawSight(){ 3 debugRenderer.begin(ShapeRenderer.ShapeType.Line); 4 float w = 50; 5 floa...
分类:其他好文   时间:2014-07-26 00:42:36    阅读次数:212
installshield:更新完成后,显示文档readme.txt
installShield在进行更新后,显示 操作的日志,或者新特性function OnUpdateUIAfter() number nResult;string szTitle, szMsg;begin //Rocky System ( SYS_BOOTMACHINE )...
分类:其他好文   时间:2014-07-26 00:39:46    阅读次数:238
C标签之forEach
标签用于通用数据循环,它有以下属性 属 性 描 述 是否必须 缺省值 items 进行循环的项目 否 无 begin 开始条件 否 0 end 结束条件 否 集合中的最后一个项目 step 步长 否 1 var 代表当前项目的变量名 否 无 varStatus 显示循环状态的变量 ...
分类:其他好文   时间:2014-07-24 23:20:23    阅读次数:224
TStringList的Find,IndexOf和Sort
procedure TForm1.Button1Click(Sender: TObject);var MyList: TStringList;begin MyList := TStringList.Create; try MyList.Add('11'); MyList.Add('...
分类:其他好文   时间:2014-07-24 22:42:33    阅读次数:301
Oracle定时器调用存储过程
1. 创建表create table job_table(run_time date); 2. 创建存储过程create or replace procedure job_proc is begin insert into job_table (run_time) values (sysdate);...
分类:数据库   时间:2014-07-24 22:34:12    阅读次数:265
回文串问题总结
回文串的问题很经典,也很常见,涉及到递归,循环,动态规划等方面,这里总结一下几种类型,供以后回顾,有问题请大家指正 1、回文串的判断   leetcode上的题目 bool isPalindrome(const char* src) { if(src == NULL)return true; int end = strlen(src)-1,begin = 0; while(beg...
分类:其他好文   时间:2014-07-24 17:42:06    阅读次数:262
Parrot源码分析之海贼王
首先从“东海颠倒山”__libc_start_main(xtern/dync_hook/spec_hooks.cpp: line 73)开始我们的旅行(还是寻宝比较给劲儿^-^)。通过“永久指针”printf我们来到了“伟大航路”上的 __tern_prog_begin(xtern/lib/runtime/helper.cpp: line 123)岛。让我们在它上面寻找我们想要的东西吧。果然有宝物tern::InstallRuntime(),顺着它我们找了对于我们这个大航海至关重要的伙伴Runtime::...
分类:其他好文   时间:2014-07-24 10:42:29    阅读次数:386
MFC DAY03 04 05
一 MFC的消息映射机制(3) 1 消息映射机制的使用 1.1 自己的类必须派生自 CCmdTarget 1.2 自己的类内 必须添加声明宏 DECLARE_MESSAGE_MAP 1.3 自己的类外 必须添加实现宏 BEGIN_MESSAGE_MAP( th...
分类:其他好文   时间:2014-07-24 00:52:47    阅读次数:375
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!