上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 300 下一页
2013年10月15日

粗解Xcode 5新特性: Asset Catalogs

摘要: 原文:http://schlu.org/2013/10/01/Xcode-Asset-Catalogs.html 基础知识 在今年的WWDC大会上苹果介绍了Asset Catalogs。Asset Catalogs是用来减少工程导航上的混乱,让图片使用情况变得更为有条理。它的方式是,你不必将所有图片都列出来,取而代之,你可以在工程中创建一个或者多个asset catalog,你可以把图片拖拽到一个合适的位置来进行管理。 Asset Catalog除了可以管理app icon以及启动图片,你还可以使用它管理任意图片。图片可以为所有设备使用,也可以为是某一设备的特定图片。这种方式非常方... 阅读全文
posted @ 2013-10-15 18:24 you Richer 阅读(347) 评论(0) 推荐(0) 编辑

UVa 297 - Quadtrees

摘要: 题目:利用四叉树处理图片,给你两张黑白图片的四叉树,问两张图片叠加后黑色的面积。分析:搜索、数据结构。把图片分成1024块1*1的小正方形,建立一位数组记录对应小正方形的颜色。 利用递归根据字符串,建立相应四叉树。在建树的过程中,树节点计算当前节点对应的小正方形 编号区间。这里处理类似于线段树,将父节点的区间等分成4份分别对应四棵子树的编号区间。 建树到达叶子时(color为‘f’或者‘e’),直接将颜色数组赋值即可。当树建完时,颜色数组即染色 完毕。将两棵树依次染色到同一数组,统计黑色节点个数即可。注意:数组大小,防止RE。#include #incl... 阅读全文
posted @ 2013-10-15 09:11 you Richer 阅读(159) 评论(0) 推荐(0) 编辑

Remove Duplicates from Sorted List @LeetCode

摘要: /** * Remove Duplicates from Sorted List * * Given a sorted linked list, delete all duplicates such that each element * appear only once. * * For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3, return 1->2->3. */public class S83 { public static void main(String[] 阅读全文
posted @ 2013-10-15 09:08 you Richer 阅读(165) 评论(0) 推荐(0) 编辑

poj - 3683 - Priest John's Busiest Day(2-SAT)

摘要: 题意:有N场婚礼,每场婚礼的开始时间为Si,结束时间为Ti,每场婚礼有个仪式,历时Di,这个仪式要么在Si时刻开始,要么在Ti-Di时刻开始,问能否安排每场婚礼举行仪式的时间,使主持人John能参加所有的这些仪式的全过程。题目链接:http://poj.org/problem?id=3683——>>每场婚礼的仪式,要么在开始段举行,要么在结束段举行,且一定要举行,要求各场婚礼仪式没冲突——>>2-SAT。。。2-SAT挺神,针对此类问题,可谓手到擒来。。。LJ《训练指南》上的写法挺容易理解的。。。于是用上了。。。(相对于2003年伍昱论文中O(n)的算法,在时间上《训练 阅读全文
posted @ 2013-10-15 09:06 you Richer 阅读(160) 评论(0) 推荐(0) 编辑

ssh 框架整合试例 (spring+struts2+hibernate)

摘要: 1.首先用Eclipse创建一个web项目(Eclipse EE 版)new->Other->输入web 然后选择Dynamic Web Project->next->输入项目名(这里新建一个项目名叫ssh) ->Next->next ->finish 接下来就是导入我们所需的jar包先导入strus2的jar包 然后修改web.xml配置文件 ssh index.html index.htm index.jsp default.html default.htm default.jsp struts2 org.apach... 阅读全文
posted @ 2013-10-15 09:04 you Richer 阅读(351) 评论(0) 推荐(0) 编辑

Elasticsearch template configuration

摘要: Index templates allow defining templates thatwill automatically be applied to new indices created. The templates may include(1) settings, (2) mappings, or (3) a simple index pattern template thatcontrols if the template will be applied to the index created. The templates could be placed in the runti 阅读全文
posted @ 2013-10-15 09:01 you Richer 阅读(643) 评论(0) 推荐(0) 编辑

Add mappings to an Elasticsearch index in realtime

摘要: Changing mapping on existing index is not an easy task. You may find the reason and possible solutions in here:http://www.elasticsearch.org/blog/changing-mapping-with-zero-downtime/ to get current mapping details, here is the sample code:ClusterState cs = client.admin().cluster().prepareState().se.. 阅读全文
posted @ 2013-10-15 08:59 you Richer 阅读(324) 评论(0) 推荐(0) 编辑

UVa 10316 - Airline Hub

摘要: 题目:给出地球上的n个机场的经度和纬度,想在这里面确定一个HUB使得他到其他机场的最大距离最小。分析:计算几何、大地坐标系。因为数据不大直接枚举即可,比较时利用圆心角可以提高计算效率,并控制精度。 利用公式可直接解得两点的空间圆心角:acos(cos(lat1)*cos(lat2)*cos(lon1-lon2)+sin(lat1)*sin(lat2)); 因为又是大地坐标,所以再推一遍吧,推导过程如下: 如图,C,D为已知两点则有如下推导: AB = r*cos(lat1);DE = r*cos(lat2);BE = r*s... 阅读全文
posted @ 2013-10-15 08:59 you Richer 阅读(288) 评论(0) 推荐(0) 编辑

Maven 初学(一)基本概念

摘要: Pom中有三个主要元素Groupid,artifactid,versiongoupid 是一个组织唯一的标识 例如 com.ibm.wwwartifactid 是一个工程呢ID ibm-projectversion 代表一个版本 例如 com.ibm.www.ibm-project.1.0maven执行一个目标(goal)有以下几个步骤prepare-resources 资源的拷贝compile 源代码拷贝阶段package 创建jar/war包阶段install 安装包到本地或者远程库中mvn clean dependency:copy-dependencies packageclean 首 阅读全文
posted @ 2013-10-15 08:57 you Richer 阅读(204) 评论(0) 推荐(0) 编辑

莱布尼兹的数学成与我国考研有何关联?

摘要: 德国数学家莱布尼兹(G.W.Leibniz,1646-1716)死去已经近三百年,与我国考研有何关联?这个问题并非一般国人所知晓。根据一项最新研究表明(请见,2012,Katz.Mikhai发表研究论文:"Leibniz's Infinitesimals: Their Fictionality, Their Modern Implementations, and Their Foes from Berkeley to Russell and Beyond"),人们发现:“Leibnizian calculus was free of contradictions, 阅读全文
posted @ 2013-10-15 08:55 you Richer 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 300 下一页