Given n non-negative integers a1, a2,
..., an, where each represents a point at coordinate (i, ai). n vertical
lines are drawn such that the two endpoints of line i is at (i, ai) and (i,
0). Fin...
分类:
其他好文 时间:
2016-05-12 14:36:17
阅读次数:
134
1. 背景: 初时提出,是为解决分布式数据库的事务问题。单机数据库事务可靠日志技术,MVCC技术实现。分布式情况下,就需要额外的手段来保证,这才出现了二阶段提交。 2. 流程: 从角色上,二阶段提交分为两种角色:协调者(coordinate),参与者(participant)。流程思路上很简单: 1 ...
分类:
其他好文 时间:
2016-05-11 16:40:25
阅读次数:
116
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpo ...
分类:
其他好文 时间:
2016-05-11 14:56:12
阅读次数:
130
题目描述:
Given n non-negative integers a1, a2, …, an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find...
分类:
其他好文 时间:
2016-05-07 10:08:48
阅读次数:
139
Container With Most Water Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are dra ...
分类:
其他好文 时间:
2016-04-27 06:52:51
阅读次数:
129
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpo ...
分类:
其他好文 时间:
2016-04-18 11:23:25
阅读次数:
134
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpo ...
分类:
其他好文 时间:
2016-04-16 13:46:30
阅读次数:
196
//创建大头针对象
MAPointAnnotation*pointAnnotation=[[MAPointAnnotationalloc]init];
//插入大头针的位置
pointAnnotation.coordinate=CLLocationCoordinate2DMake(39.989631,116.481018);
//大头针的标题
pointAnnotation.title=@"方恒国际";
//大头针的子标题
pointAnnot..
分类:
移动开发 时间:
2016-04-15 23:21:40
阅读次数:
823
背景:继上一篇博文后,继续科普肿瘤放疗领域中的相关概念。文中的知识点都来自于相关的官方或相关企业文档,仅从相关行业从业者的角度来进行阐述,由于本人不是放疗医生和技师,因此可能与实际工作中的环节有出入,欢迎大家来邮交流,共同进步。
本博文开篇让我从最熟悉的DICOM文件格式说起,相较于普通的bmp图像而言,DCM是结合了患者、医院、设备等相关信息于像素数据之上的文件。但单单从像素数据来看,两者同样存...
分类:
其他好文 时间:
2016-04-10 14:42:10
阅读次数:
379
一年前,系统学习过3D数学,并记录了一篇博客《C#程序员整理的Unity 3D笔记(十):Unity3D的位移、旋转的3D数学模型》。 一年后,再次温习之。 坐标系:Unity3D使用左手笛卡尔坐标系(Descartes coordinate system) 世界坐标系(world space):在 ...
分类:
编程语言 时间:
2016-04-07 20:48:51
阅读次数:
225