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
智能指针在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
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
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
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
最长回文子串,学习了一下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
学习了一下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
第一题(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
一般情况下 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
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
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
Nearest Common AncestorsTime Limit:1000MSMemory Limit:10000KTotal Submissions:20260Accepted:10683DescriptionA rooted tree is a well-known data structu...
分类:
其他好文 时间:
2015-03-28 13:00:00
阅读次数:
112
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 13:01:12
阅读次数:
188
机房—美国:AWK机房:awknet 美国加利福尼亚州弗里蒙市BN机房:位于美国宾夕维尼亚州的斯克兰顿BTN机房:位于美国华盛顿州西雅图。路由经优化高速直链亚洲各地区,接入线路 (SIX,MFN,UUNET Sprint,Savvis,XO, Level3, Qwest,Congent,Global...
分类:
其他好文 时间:
2015-03-28 13:00:50
阅读次数:
395
典型软件生存周期:需求分析——软件分析——软件设计——编码(测试)——软件测试——运行维护软件过程1.瀑布模型: 2.快速原型模型快速原型模型需要迅速建造一个可以运行的软件原型 ,以便理解和澄清问题,使开发人员与用户达成共识,最终在确定的客户需求基础上开发客户满意的软件产品。 快速原型模型允许在需求...
分类:
其他好文 时间:
2015-03-28 12:59:28
阅读次数:
112
有些性能低的机器,在切换activity时候出现白屏一段时候后才显示正确的视图高性能的机器可能太快看不到,但是事实是存在的,特别是当你新开一个进程的时候,A进程的activity跳转到B进程的Activity是绝对会出现白屏一段时间的解决方案如下1.style.xml中中增加2acvitiy的属性中...
分类:
其他好文 时间:
2015-03-28 12:59:57
阅读次数:
105
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=450You are to write a program to find a circle which covers a set of points and has th...
分类:
其他好文 时间:
2015-03-28 13:00:08
阅读次数:
202