首先要说的就是:怎么实现一个自定义的滚动条
主要步骤:
1. 定义两个div,一大一小,让小div在大div上滚动
2. 利用拖拽原理使小div可以滚动,这里拖拽的时候,只是改变小div的left值;
3. 限制小div的滚动范围
#parent{
width: 400px;height: 30px;background...
分类:
Web程序 时间:
2015-05-25 22:36:32
阅读次数:
159
在Android开发中,有时需要应用第三方框架,那么就需要把第三方项目导入到Eclipse中,并完成依赖。接下来详细讲一下该过程...
分类:
移动开发 时间:
2015-05-25 22:34:32
阅读次数:
256
Distance Queries
Time Limit: 2000MS
Memory Limit: 30000K
Total Submissions: 10142
Accepted: 3575
Case Time Limit: 1000MS
Description
Farmer John's cows refused to ...
分类:
其他好文 时间:
2015-05-25 22:34:49
阅读次数:
160
BZOJ 3196 二逼平衡树 树套树...
分类:
其他好文 时间:
2015-05-25 22:36:28
阅读次数:
129
对于仿射变换的理解,以本人现阶段水平还谈不上是深入了解,我喜欢把它想象成一种简单的动画效果,下面介绍几种简单的变化:位置移动,按一定比例缩放,顺时针、逆时针旋转
#import "ViewController.h"
@interface
ViewController ()
@property (nonatomic...
分类:
其他好文 时间:
2015-05-25 22:36:35
阅读次数:
192
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
For example, given s = "aab",
Return
[
["aa","...
分类:
其他好文 时间:
2015-05-25 22:36:35
阅读次数:
123
题目大意:给定一个函数f(x)=g(x+1)+g(x+2)+.....+g(x?2)f(x)=g(x+1)+g(x+2)+.....+g(x*2),其中g(x)=[x的二进制表示有且仅有3个1]g(x)=[x的二进制表示有且仅有3个1]。给你N(N<=100)N(N<=100)个输入,每个输入给你一个m(m<=231?1)m(m<=2^{31}-1),要你求出f(x)=m是否存在唯一的整数解f(x)...
现在物联网搞的轰轰烈烈的,小米的手环等一系列产品,下面我们就来研究一下小米手环的记步功能 工具类
package com.zsl.bluetoothdemo.ble;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.Blueto...
分类:
移动开发 时间:
2015-05-25 22:34:07
阅读次数:
407
Perl 是 Practical Extraction and Report Language的缩写,它是由Larry Wall设计的,并由他不断更新和维护。
Perl 是解释运行的。一般Perl程序的第一行需注明自己是个Perl程序而不是shell程序
。
一般将下面的一行作为文件的第一行#!/usr/bin/perl可以在终端敲入 prel -v 查看是否有安装prel 。 wher...
分类:
其他好文 时间:
2015-05-25 22:33:24
阅读次数:
115
EventBus——Android开发中一个优雅的组件间通信的方式...
分类:
移动开发 时间:
2015-05-25 22:35:53
阅读次数:
233
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=5234
题意:给出一个n*m的矩阵和一个整数k,要求从左上角开始只能往右
或者往左开始遍历,在途中可以选择加当前位置的数或者不加当前位
置的数,求最终加的数的和小于k的最大值。
分析:这道题一看就是一般的背包,但是没研究过背包和dp,只是凭
这感觉写了状态转移方程,wa了几次A了,感觉dp是个...
分类:
移动开发 时间:
2015-05-25 22:33:59
阅读次数:
203
毕业设计终于忙完了,答辩顺利通过~~~以后可以安心的写程序了,希望正在学习IOS或者编程的道友能一起学习,本人会不定时上传案例demo,愿你我共勉,一起学习进步。最后一句,每个人都要有梦想,万一实现了呢~~~...
分类:
其他好文 时间:
2015-05-25 22:33:57
阅读次数:
143
本文测试的Spark版本是1.3.1Spark Streaming编程模型:第一步:
需要一个StreamingContext对象,该对象是Spark Streaming操作的入口 ,而构建一个StreamingContext对象需要两个参数:
1、SparkConf对象:该对象是配置Spark 程序设置的,例如集群的Master节点,程序名等信息
2、Seconds对象:该对象设置了Str...
题意不说了,之所以贴代码是因为想说容器是个很好的东西#include
#include
#include
#include
#include
#include
using namespace std;
mapint,setint> >mp;
setint>::iterator it;
int main()
{
int n,m,x;
while(~scanf("%d%d",&n,&m...
分类:
其他好文 时间:
2015-05-25 22:35:10
阅读次数:
148
dp[i][j]dp[i][j]表示时刻i,在车站j,等待的最少时间
有3中方案:
等一分钟
往左搭车
往右搭车/*************************************************************************
> File Name: uva1025.cpp
> Author: ALex
> Mail: zchao1...
分类:
其他好文 时间:
2015-05-25 22:34:21
阅读次数:
237
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=1107
#include
#include
#include
#include
using namespace std;
const int maxn=2000+10;
typedef struct Node
{
int x,y;
int level,in,out,lift;//门...
分类:
其他好文 时间:
2015-05-25 22:33:56
阅读次数:
174
小希的迷宫
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 31911 Accepted Submission(s): 9850
Problem Description
上次Gardon的迷宫城堡小希玩了很久(见Pr...
分类:
其他好文 时间:
2015-05-25 22:32:48
阅读次数:
134