The geometric median of a discrete set of sample points in a Euclidean space is the point minimizing the sum of distances to the sample points. This g...
分类:
其他好文 时间:
2014-10-11 21:09:46
阅读次数:
222
invlpg 指令简介
void
tlb_invalidate(pde_t *pgdir, void *va)
{
// Flush the entry only if we're modifying the current address space.
// For now, there is only one address space, so...
分类:
其他好文 时间:
2014-10-11 18:13:55
阅读次数:
214
Remove Duplicates from Sorted Array I
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for an...
分类:
其他好文 时间:
2014-10-11 16:19:56
阅读次数:
140
http://www.unitymanual.com/home.php?mod=space&uid=2452&do=blog&id=420using UnityEngine;using System.Collections;public class TestSprite : MonoBehaviou...
分类:
编程语言 时间:
2014-10-11 15:01:35
阅读次数:
266
大家都知道,objective-c是c语言的超集,所以温故知新系列的每一篇文章就先从c语言开始说起 ![c语言数据类型][1] [1]: http://static.oschina.net/uploads/space/2014/1011/105242_Vs92_660766.jpg 除了以上的数据...
分类:
其他好文 时间:
2014-10-11 13:09:55
阅读次数:
188
题目:Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space fo...
分类:
其他好文 时间:
2014-10-10 20:19:34
阅读次数:
176
white-space:nowrap; text-overflow:ellipsis; overflow: hidden; clip [不显示省略标记(...),而是简单的裁切], ellipsis [当对象内文本溢出时显示省略标记(...)。
分类:
Web程序 时间:
2014-10-10 19:30:24
阅读次数:
214
首先看看下面的图,看清楚了图咱们要说的知识点也就说说清楚了一半
int a=10;
String b="ss";
String c=new String("kkk");
Person d=new Person("dlf");
String e=new String("kkk");
String f="ss";
jvm中有堆heap,栈stack,常量池constant...
分类:
其他好文 时间:
2014-10-10 19:14:44
阅读次数:
219
一、预备知识—程序的内存分配 一个由C/C++编译的程序占用的内存分为下面几个部分 1、栈区(stack)— 由编译器自己主动分配释放 ,存放函数的參数值,局部变量的值等。其 操作方式相似于数据结构中的栈。 2、堆区(heap) — 一般由程序猿分配释放, 若程序猿不释放,程序结束时可能由O...
分类:
其他好文 时间:
2014-10-09 21:40:17
阅读次数:
215
错误代码:
java.lang.OutOfMemoryError: PermGen space
原因分析:
myeclipse或tomcat的内容分配的不够用,启动失败
解决方法:
1.找到tomcat安装目录的这个文件\apache-tomcat-7.0.41\bin\catalina.bat,打开,在里面找到这句:rem ----- Execute The Requested Command 。在这句下面添加:set JAVA_OPTS=%JAVA_OPTS% -Xms256m -Xmx1024m ...
分类:
编程语言 时间:
2014-10-09 20:48:47
阅读次数:
212