我认为企业级应该是一种思想,就是"企业级思想",利用企业级思想做出的应用,就是企业级应用、利用企业级思想来开发就是企业级开发...
分类:
其他 时间:
2015-03-28 13:03:27
收藏:
0 评论:
0 赞:
0 阅读:
281
禁止访问Apache目录...
分类:
Web开发 时间:
2015-03-28 13:03:17
收藏:
0 评论:
0 赞:
0 阅读:
172
100小时学会SAP.Day5...
分类:
其他 时间:
2015-03-28 13:02:57
收藏:
0 评论:
0 赞:
0 阅读:
186
??所谓流利语法的实现是成员函数 返回值是 类的实例this 出处:http://blog.csdn.net/u010019717author:孙广东 1、Camera Shake一个脚本,这个动画涉及到两个动画,一个是Cube自由落体使用Easing函数类型就行了。另一个是抖动使用类TweenShake成员。 在Start()函数中初始化了以上两个动画成员。然后在 Update(...
分类:
其他 时间:
2015-03-28 13:02:48
收藏:
0 评论:
0 赞:
0 阅读:
307
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:02:37
收藏:
0 评论:
0 赞:
0 阅读:
330
智能指针在C++11的标准中已经存在了,分别是unique_ptr,shared_ptr,weak_ptr,其中最常用的应该是share_ptr,它采用引用计数的方式管理内存,当引用计数为0的时候,自动释放内存,但是由于shared_ptr考虑到了线程安全,所以会存在有较大的性能损失。所以在实时游戏开发中,往往不会用到shared_ptr。
在cocos2d-x3.2以及更高的版本中,cocos...
分类:
其他 时间:
2015-03-28 13:02:27
收藏:
0 评论:
0 赞:
0 阅读:
154
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:07
收藏:
0 评论:
0 赞:
0 阅读:
242
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:01:57
收藏:
0 评论:
0 赞:
0 阅读:
158
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:01:47
收藏:
0 评论:
0 赞:
0 阅读:
164
一些thread类或servlet不能通过spring注解的方式调用spring容器里面的类
尝试将thread或servlet加上@component或@controller注解变成被spring容器管理,再调用spring容器里面的其他类,失败!
最终找出下面两种解决方案:
一,通过spring配置文件applicationContext.xml初始化
[java] vie...
分类:
编程语言 时间:
2015-03-28 13:01:37
收藏:
0 评论:
0 赞:
0 阅读:
399
最长回文子串,学习了一下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:01:27
收藏:
0 评论:
0 赞:
0 阅读:
158
学习了一下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:01:26
收藏:
0 评论:
0 赞:
0 阅读:
232
第一题(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:01:23
收藏:
0 评论:
0 赞:
0 阅读:
390
一般情况下 button添加背景图
UIButton
*button = [[UIButton
alloc] initWithFrame:CGRectMake(80,
130,
160,
44)];
[button
setTitle:@”Test Button” forState:UIControlStateNormal];//
Image with withou...
分类:
其他 时间:
2015-03-28 13:00:57
收藏:
0 评论:
0 赞:
0 阅读:
538
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:00:47
收藏:
0 评论:
0 赞:
0 阅读:
208
worker_processes 8一般CPU(i/o)密集型配置为核数相同,网络(i/o)密集型配置为核数倍数(我配置为2倍)worker_cpu_affinity(这个没用过)仅适用于linux,使用该选项可以绑定worker进程和CPU(2.4内核的机器用不了)worker_cpu_affin...
分类:
其他 时间:
2015-03-28 13:00:07
收藏:
0 评论:
0 赞:
0 阅读:
125
Freemodbus 1.5Freemodbus文档1:模块Freemodbus文档2:寄存器Freemodbus文档3:配置Freemodbus文档4:工具函数 Freemodbus文档5:移植 Freemodbus文档6:提示 Freemodbus文档7:代码示例 Freemodbus文档8:协...
分类:
数据库技术 时间:
2015-03-28 12:59:57
收藏:
0 评论:
0 赞:
0 阅读:
229
PHP史诗级IDE,你懂的……
分类:
Web开发 时间:
2015-03-28 12:59:37
收藏:
0 评论:
0 赞:
0 阅读:
130
android----问题解决Dex Loader] Unable to execute dex: Multiple dex files define Lcom/sina/sso/RemoteSSO;1.遇到的问题:Unable to execute dex: Multiple dex files ...
分类:
其他 时间:
2015-03-28 12:59:07
收藏:
0 评论:
0 赞:
0 阅读:
194
机房—美国:AWK机房:awknet 美国加利福尼亚州弗里蒙市BN机房:位于美国宾夕维尼亚州的斯克兰顿BTN机房:位于美国华盛顿州西雅图。路由经优化高速直链亚洲各地区,接入线路 (SIX,MFN,UUNET Sprint,Savvis,XO, Level3, Qwest,Congent,Global...
分类:
其他 时间:
2015-03-28 12:58:57
收藏:
0 评论:
0 赞:
0 阅读:
257