自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (13)
  • 收藏
  • 关注

原创 向 Android O 迁移应用

Preview 向 Android O 迁移应用 本文内容 确保平台兼容性 准备一台运行 Android O 的设备 执行兼容性测试 构建具有 Android O 功能的应用 获取 Android O SDK 更新构建配置 从清单文件中移除广播接收器 测试 A

2017-04-23 00:32:53 670

原创 Android O 功能和 API

Preview Android O 功能和 API 主要的开发者功能 通知 自动填充框架 画中画模式 处理字体 自适应图标 颜色管理 WLAN 感知 配套设备配对 WebView API 固定快捷方式和小部件 无障碍功能 权限 内容提供程序分页

2017-04-23 00:31:54 3810

原创 Android O 行为变更

Preview Android O 行为变更 本文内容 针对所有 API 级别的应用 后台执行限制 Android 后台位置限制 蓝牙 输入和导航 无障碍功能 安全性 隐私性 网络连接和 HTTP(S) 连接 记录未捕获的异常 集合的处

2017-04-23 00:30:58 1245

原创 Android O Developer Preview

Preview 计划概览 欢迎加入 Android O Developer Preview 计划,此计划将为您提供针对下一个版本的 Android 系统提升您应用的兼容性和开发应用所需的所有功能。它是一款免费软件。您只需下载预览版工具即可立即使用。 硬件和模拟器系统映像 在 Nexus 5X、6P、Player、Pixel C、Pixel、Pixel XL 以及模拟器中运行并测试应用。

2017-04-16 00:39:17 1134

原创 Java学习笔记2——命令行模式下与程序互动

学习一门编程语言,在开始时最好的方式之一是利用文本编辑器进行代码的编写,这有助于短期内迅速掌握该门语言的基本语法结构。本文意在介绍通过文本编辑时,如何实现与程序的交互的入门知识总结。一、使用Scanner类进行输入交互(1.5及其以上版本)位于包java.util中,该类是一个可以使用正则表达式来解析基本类型和字符串的简单文本扫描器。public final class Scanner

2012-04-14 01:25:32 451 1

原创 java学习笔记1——环境设置

设置环境的具体方式网上随便一搜就有好多,此处不再罗嗦。JDK安装目录下各个目录含义(此处以64位的jdk1.6.0_31为例):jdk1.6.0_31——JDK安装目录jre6——默认的公共JRE安装 目录jdk1.6.0_31\bin——提供JDK的工具程序jdk1.6.0_31\demo——使用Java预演编写好的demo实例jdk1.6.0_3

2012-04-13 13:41:12 235

Amazing Android Apps for Dummies

《Amazing Android Apps for Dummies》该书的英文版,排版清晰,简单易懂,可做学习收藏用

2013-11-02

Android开发环境——Android入门系列一

介绍Android的环境搭建、基本编译、常用工具等,是入门的基础

2013-11-02

Android基础知识——Android入门系列二

综述Android的架构,重点介绍Android应用的组件已经基本属性

2013-11-02

SCI 发表论文的策略和手段

介绍了SCI论文的一些写作技巧和方法,非常值得收藏

2010-03-29

Algorithm Design(英文版)

经典算法设计教程 目录: 第1章 引言:某些典型的问题 1.1 第一个问题:稳定匹配 1.2 五个典型问题 带解答的练习 练习 注释和进一步的阅读 第2章 算法分析基础 2.1 计算可解性 2.2 增长的渐近阶 2.3 用表和数组实现稳定匹配算法 2.4 一般运行时间的概述 2.5 更复杂的数据结构:优先队列 带解答的练习 练习 注释和进一步的阅读 第3章 图 3.1 基本定义与应用 3.2 图的连通性与图的遍历 3.3 用优先队列与栈实现图的遍历 3.4 二分性测试:宽度优先搜索的一个应用 3.5 有向图中的连通性 3.6 有向无圈图与拓扑排序 带解答的练习 练习 注释和进一步的阅读 第4章 贪心算法 4.1 区间调度:贪心算法领先 4.2 最小延迟调度:一个交换论证 4.3 最优高速缓存:一个更复杂的交换论证 4.4 一个图的最短路径 4.5 最小生成树问题 4.6 实现Kruskal算法:Unoin-Find数据结构 4.7 聚类 4.8 Huffman码与数据压缩 4.9 最小费用有向树:一个多阶段贪心 带解答的练习 练习 注释和进一步的阅读 第5章 分治策略 5.1 第一个递推式:归并排序算法 5.2 更多的递推关系 5.3 计数逆序 5.4 找最接邻近的点对 5.5 整数乘法 5.6 卷积与快速傅里叶变换 带解答的练习 练习 注释和进一步的阅读 第6章 动态规划 6.1 带权的区间调度:一个递归过程 6.2 动态规划原理:备忘录或者子问题迭代 6.3 分段的最小二乘:多重选择 6.4 子集和与背包:加一个变量 6.5 RNA二级结构:在区间上的动态规划 6.6 序列比对 6.7 通过分治策略在线性空间的序列比对 6.8 图中的最短路径 6.9 最短路径和距离向量协议 6.10 图中的负圈 带解答的练习 练习 注释和进一步的阅读 第7章 网络流 第8章 Ng与计算的难解性 第9章 一个超出 第10章 扩展易解性的界限 第11章 近似算法 第12章 局部搜索 第13章 随机算法 后记:永不停止运行的算法 索引

2010-01-22

遗传算法的数学基础(张文修等编著)

虽然论坛上有这个资源,但是要的资源分有些高,这个传上供资源分少的朋友使用,介绍很详细

2009-08-04

SWT/JFace IN ACTION(英文版)

这个是英文版的,一般很好的入门教程,希望大家喜欢

2009-07-22

世界是平的(第二版)

盖茨强烈推荐的一本书,书中援引了很多热点话题,介绍了诸多令人瞩目的市场和炙手可热的行业。开放源代码、外包、离岸生产、供应链和搜索技术等被描述成为铲平世界的 10大动力,而中国、印度等国家和一些站在全球顶尖 位置的公司和机构,则被描述成变平的世界中举足轻重的角色。书中写到的许多现象新鲜但不陌生,更有一些是我们工作中接触过甚至直接参与的商业行为。但是当弗里德曼把所有这一切编织在一起的时候,却揭示了一个正在发生的深刻而又令人激动的变化全球化的趋势。他正随着这些动力,在地球各处勇往直前、势不可挡,世界也因此从一个球体变得平坦。有趣的是在过去的两年中,这些动力并没有带来太多的轰鸣和噪音。而是在人们不知不觉中悄 然改变着这个世界,并且让我们感受到他们近在咫尺的威力。

2009-07-15

MIT实验室人员是怎样做学问的

本文的主旨是解释如何做研究。我们提供的这些建议,对做研究本身(阅读、写作和程序设计),理解研究过程以及开始热爱研究(方法论、选题、选导师和情感因素),都是极具价值的。

2009-07-12

SWT JFace IN ACTION(中文版)

We developed this book with one primary goal in mind: to introduce the SWT and JFace toolsets as simply and as thoroughly as possible. Although the available doc- umentation covers many aspects of the two libraries, we were disappointed by the amount (particularly in graphics) that has gone undocumented. So, we came together in late 2003 to create an approachable book that covers both the high-level theory and the low-level details of the combined SWT/JFace development tools.

2009-06-27

香港科技大学的p2p综述

P2P network is factually an overlay network for distributed object store, search and sharing. This paper will present a survey about it’s recent. First, we will introduce a simple definition of P2P, and define some common operation procedures in P2P. Second, P2P performance metric will be discussed in order to understand and differentiated the practical P2P architectures and protocols. Third, the current P2P architecture will be classified and compared in detail. Then, object search protocols will be carefully discussed with corresponding P2P architecture. We also review the current P2P modeling outputs and list the general modeling approaches. Finally, several novel applications based on P2P techniques and future research directions of P2P overlay networks are briefly investigated. This paper aims to give a clear and complete survey of P2P networks according to clues of its development and evolution process.

2009-04-25

ViSAGE-A Virtual Laboratory for Simulation and Analysis of Social Group Evolution

We present a modeling laboratory, Virtual Laboratory for the Simulation and Analysis of Social Group Evolution (ViSAGE), that views the organization of human communities and the experience of individuals in a community as contingent upon on the dynamic properties, ormicro-laws, of social groups. The laboratory facilitates the theorization and validation of these properties through an iterative research processes that involves (1) forward simulation experiments, which are used to formalize dynamic group properties, (2) reverse engineering from real data on how the parameters are distributed among individual actors in the community, and (3) grounded research, such as participant observation, that follows specific activities of real actors in a community and determines if, or how well, the micro-laws describe the way choices are made in real world, local settings. In this article we report on the design of ViSAGE. We first give some background to the model. Next we detail each component. We then describe a set of simulation experiments that we used to further design and clarify ViSAGE as a tool for studying emergent properties/phenomena in social networks.

2008-12-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除