案例:焦点图轮播特效案例:焦点图轮播特效案例:固定边栏滚动特效案例:固定边栏滚动特效案例:弹出层效果案例:弹出层效果案例:分页页码制作案例:分页页码制作
分类:
其他好文 时间:
2014-05-30 14:48:43
阅读次数:
243
下载mysql1.下载:在http://dev.mysql.com/downloads/mysql/官网上下载mysql-5.5.28-linux2.6-i686.tar.gz.2.解压tar
-xvf mysql-5.5.28-linux2.6-i686.tar.gz3.移动到/usr/local...
分类:
数据库 时间:
2014-05-30 14:50:08
阅读次数:
369
因为Android的市场比较分散,有时候上传和审核都麻烦。为了让用户能第一时间获得更新,接下来要实现版本检查和下载功能。先在Storage里放入应用的APK、一个json的文档或者xml文件,因为我比较喜欢用json,所以接下来就用json文档。写json文档的时候记得不要用记事本,要用Notepa...
分类:
移动开发 时间:
2014-05-30 14:51:25
阅读次数:
302
离线安装:1.下载插件包:http://pan.baidu.com/s/1c0cRHsO2.解压到:D:\downloads\m2eclipse3.在eclipse的dropins目录下,新建maven.link文件4.编辑maven.link,指向插件位置:path=D:/downloads/m2...
分类:
系统相关 时间:
2014-05-30 14:52:45
阅读次数:
304
jdk1.4之后版本不需要设置Classpath变量。
如果在Classpath变量中没有添加当前路径,即 [.](无括号),在命令行中运行java Helloworld会出现错误:Error: Could not
find or load main class Helloworld这是由于指定了C...
分类:
编程语言 时间:
2014-05-30 14:54:11
阅读次数:
331
insertAdjacentHTML方法插入标记最后一个新增的方式是insertAdjacentHTML()方法,它接收两个参数:插入位置和要插入的HTML文本,第一个参数必须是下列值之一:"beforebegin",在当前元素之前插入一个相邻的同辈元素;"afterbegin",在当前元素之下插入...
分类:
编程语言 时间:
2014-05-30 14:55:36
阅读次数:
239
写在前面前文:用python + hadoop streaming 编写分布式程序(一) --
原理介绍,样例程序与本地调试为了方便,这篇文章里的例子均为伪分布式运行,一般来说只要集群配置得当,在伪分布式下能够运行的程序,在真实集群上也不会有什么问题。为了更好地模拟集群环境,我们可以在mapred-...
分类:
编程语言 时间:
2014-05-30 14:56:56
阅读次数:
309
Given a triangle, find the minimum path sum
from top to bottom. Each step you may move to adjacent numbers on the row
below.For example, given the fol...
分类:
其他好文 时间:
2014-05-30 14:59:37
阅读次数:
241
Say you have an array for which theithelement
is the price of a given stock on dayi.Design an algorithm to find the maximum
profit. You may complete a...
分类:
其他好文 时间:
2014-05-30 15:00:54
阅读次数:
335
20140530-MySQL插入中文问题再做笔记 1、脚本语句 导入之前,先charset gbk。
修改表字段编码: 注意:这里用导入的方式插入的数据,控制台会报错。在我们的客户端工具中执行,就不会报错了。
2、MyBatis中,xml文件引入成为mapper的配置: 3、写junit测试类的时候...
分类:
数据库 时间:
2014-05-30 15:02:22
阅读次数:
313
There areNchildren standing in a line. Each
child is assigned a rating value.You are giving candies to these children
subjected to the following requi...
分类:
其他好文 时间:
2014-05-30 15:04:58
阅读次数:
224
Given a binary tree, find its maximum depth.The
maximum depth is the number of nodes along the longest path from the root node
down to the farthest le...
分类:
其他好文 时间:
2014-05-30 15:03:42
阅读次数:
237
http://www.cnblogs.com/lyj/archive/2008/11/28/1343418.html管理NHibernate二级缓存
NHibernate二级缓存由ISessionFactory创建并由ISessionFactory自行维护。我们使用NHibernate操作数据时,I...
分类:
系统相关 时间:
2014-05-30 15:06:24
阅读次数:
382
A linked list is given such that each node
contains an additional random pointer which could point to any node in the list
or null.Return a deep copy ...
分类:
其他好文 时间:
2014-05-30 15:07:49
阅读次数:
260
Design and implement a data structure for Least
Recently Used (LRU) cache. It should support the following
operations:getandset.get(key)- Get the valu...
分类:
其他好文 时间:
2014-05-30 15:09:06
阅读次数:
223
Given an array where elements are sorted in
ascending order, convert it to a height balanced BST./** * Definition for binary
tree * struct TreeNode { ...
分类:
其他好文 时间:
2014-05-30 15:10:23
阅读次数:
227