码迷,mamicode.com
首页 > 2015年03月28日 > 全部分享
100小时学会SAP.Day5
100小时学会SAP.Day5...
分类:其他好文   时间:2015-03-28 13:03:37    阅读次数:141
DFTween官方实例详解
??所谓流利语法的实现是成员函数 返回值是 类的实例this 出处:http://blog.csdn.net/u010019717author:孙广东 1、Camera Shake一个脚本,这个动画涉及到两个动画,一个是Cube自由落体使用Easing函数类型就行了。另一个是抖动使用类TweenShake成员。         在Start()函数中初始化了以上两个动画成员。然后在 Update(...
分类:其他好文   时间:2015-03-28 13:05:16    阅读次数:168
root下使用gedit
Waring: (gedit:2461): Gtk-WARNING **: Calling Inhibit failed: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files Install...
分类:其他好文   时间:2015-03-28 13:04:54    阅读次数:197
【深入了解cocos2d-x 3.x】内置数据结构(1)——智能指针
智能指针在C++11的标准中已经存在了,分别是unique_ptr,shared_ptr,weak_ptr,其中最常用的应该是share_ptr,它采用引用计数的方式管理内存,当引用计数为0的时候,自动释放内存,但是由于shared_ptr考虑到了线程安全,所以会存在有较大的性能损失。所以在实时游戏开发中,往往不会用到shared_ptr。 在cocos2d-x3.2以及更高的版本中,cocos...
分类:其他好文   时间:2015-03-28 13:04:33    阅读次数:750
POJ 1961 Period
KMP的第一题,以前数据结构课上学过KMP,现在对其实现和其中一些规律加深了理解 #include char s[1000005]; int next[1000005]; int n; void get_next(){ int i,j; j=next[0]=-1; i=0; while(i<n){ while(j!=-1 && s[j]!=s[i]...
分类:其他好文   时间:2015-03-28 13:02:32    阅读次数:117
hdu 1208 Pascal's Travels (子状态继承dp)
Pascal's Travels Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1774    Accepted Submission(s): 781 Problem Description An n x n g...
分类:其他好文   时间:2015-03-28 13:03:40    阅读次数:122
POJ 2752 Seek the Name, Seek the Fame
KMP第二题,如果对KMP理解了的话,这道题应该想一下就能想出来 #include #include using namespace std; char s[400005]; int next[400005]; int a[400005]; //next数组范围为1-n,next[0]是不使用的 void get_next(int n){ if(n==0) return; int...
分类:其他好文   时间:2015-03-28 13:04:08    阅读次数:149
非spring托管对象如何获取到spring托管对象
一些thread类或servlet不能通过spring注解的方式调用spring容器里面的类 尝试将thread或servlet加上@component或@controller注解变成被spring容器管理,再调用spring容器里面的其他类,失败! 最终找出下面两种解决方案: 一,通过spring配置文件applicationContext.xml初始化 [java] vie...
分类:编程语言   时间:2015-03-28 13:04:40    阅读次数:151
HDU 3374 String Problem
最长回文子串,学习了一下manacher算法 #include #include char s[1000005]; int next[1000005]; int n; //i,j两个指针所指的位置可以保证已经是该指针之前的串里,最优的了 int min(int a,int b){ if(a<b) return a; return b; } int max(int a,int b...
分类:其他好文   时间:2015-03-28 13:04:30    阅读次数:135
HDU 3068 最长回文
学习了一下manacher回文 #include #include #include using namespace std; char s[110005]; char news[220005]; int p[220005]; int n; void manacher(){ n=strlen(s); int l=0; news[l++]='$'; news[l++]='#'; f...
分类:其他好文   时间:2015-03-28 13:02:04    阅读次数:126
2015华为机试
第一题(60分):        按要求分解字符串,输入两个数M,N;M代表输入的M串字符串,N代表输出的每串字符串的位数,不够补0。例如:输入2,8, “abc” ,“123456789”,则输出为“abc00000”,“12345678“,”90000000” #include using namespace std; void solve(char *str , int n , ...
分类:其他好文   时间:2015-03-28 13:02:03    阅读次数:315
UIButton背景图片调整大小
一般情况下 button添加背景图 UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(80, 130, 160, 44)];   [button setTitle:@”Test Button” forState:UIControlStateNormal];// Image with withou...
分类:其他好文   时间:2015-03-28 13:02:08    阅读次数:270
Same Tree
Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical and the nodes have the same value. #include #inc...
分类:其他好文   时间:2015-03-28 13:03:15    阅读次数:113
java学习笔记—JDBC2(17)
1、复习:jdbc的六个固定步骤*(以查询为例) //1.将驱动进行注册(可以进行与数据库的链接) DriverManager.registerDriver(new Driver()); //2.得到一个与数据库连接的对象 ...
分类:数据库   时间:2015-03-28 13:01:04    阅读次数:166
Nginx配置优化的几个参数
worker_processes 8一般CPU(i/o)密集型配置为核数相同,网络(i/o)密集型配置为核数倍数(我配置为2倍)worker_cpu_affinity(这个没用过)仅适用于linux,使用该选项可以绑定worker进程和CPU(2.4内核的机器用不了)worker_cpu_affin...
分类:其他好文   时间:2015-03-28 13:01:15    阅读次数:151
Freemodbus介绍及测试
Freemodbus 1.5Freemodbus文档1:模块Freemodbus文档2:寄存器Freemodbus文档3:配置Freemodbus文档4:工具函数 Freemodbus文档5:移植 Freemodbus文档6:提示 Freemodbus文档7:代码示例 Freemodbus文档8:协...
分类:数据库   时间:2015-03-28 13:02:22    阅读次数:270
PHP开发神器——phpstorm
PHP史诗级IDE,你懂的……
分类:Web程序   时间:2015-03-28 13:01:54    阅读次数:104
1448条   上一页 1 ... 51 52 53 54 55 56 57 ... 86 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!