码迷,mamicode.com
首页 > 2015年03月12日 > 全部分享
android自定义控件系列教程-----仿新版优酷评论剧集卡片滑动控件
我们先来看看优酷的控件是怎么回事? 只响应最后也就是最顶部的卡片的点击事件,如果点击的不是最顶部的卡片那么就先把它放到最顶部,然后在移动到最前面来,反复如次。 知道了这几条那么我们就很好做了。 里面的技术细节可能就是child的放置到前面来的动画问题把。 先看看我们实现得效果: 然后仔细分析一下我们要实现怎么样的效果: 我也是放置了一个按钮和两个view在控件上面,只有...
分类:移动开发   时间:2015-03-12 20:50:42    阅读次数:214
HMM的学习笔记1:前向算法
HMM的学习笔记   HMM是关于时序的概率模型,描述由一个隐藏的马尔科夫链随机生成不可观测的状态随机序列,再由各个状态生成不可观测的状态随机序列,再由各个状态生成一个观测而产生观测的随机过程。 HMM由两个状态和三个集合构成。他们分别是观测状态序列,隐藏状态序列,转移概率,初始概率和混淆矩阵(观察值概率矩阵)。 HMM的三个假设: 1、有限历史性假设,p(si|si-1,si-2,.....
分类:编程语言   时间:2015-03-12 20:53:00    阅读次数:244
L - Abbott's Revenge(比较复杂的bfs)
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %lluSubmit Status Practice UVA 816Appoint description:Description Abbott’s RevengeThe 1999 W...
分类:其他好文   时间:2015-03-12 20:50:28    阅读次数:165
CodeForces 522A 手速题
1 #include "iostream" 2 #include "cstdio" 3 #include "cstring" 4 #include "algorithm" 5 #include "map" 6 using namespace std; 7 int n; 8 map dp; 9 vo....
分类:其他好文   时间:2015-03-12 20:49:38    阅读次数:128
MyEclipse 6.5安装maven插件
一、卸载原有maven插件MyEclipse 6.5集成了Maven插件,不过有不少bug,用习惯了m2eclipse,不想在这上面浪费时间。要安装m2eclipse,需要先把自带的maven插件卸载掉,卸载步骤如下:1.删除/eclipse/features/com.genuitec.myecli...
分类:系统相关   时间:2015-03-12 20:50:45    阅读次数:216
【POJ2406】【KMP】Power Strings
DescriptionGiven two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcdef". If we think...
分类:其他好文   时间:2015-03-12 20:49:18    阅读次数:155
WindosForm 计算器
计算器 可以分一下类 数字键 + - * / % =和撤销 归零C最简单下面看一下计算器具体的代码using System;using System.Collections.Generic;using System...
分类:Windows程序   时间:2015-03-12 20:49:46    阅读次数:155
NSData
Cocoa为我们提供了NSData类,该类包含了大量字节。你可以活的数据的长度和指向字节起始位置的指针。因为NSData是一个对象,适用于常规的内存管理行为。因此,如果将数据块传递给一个函数或方法,可以通过传递一个自动释放NSData来实现,无需担心内存清除问题。下面的NSData对象将保存一个普通...
分类:其他好文   时间:2015-03-12 20:49:13    阅读次数:133
【leetcode】Merge Two Sorted Lists(easy)
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.思路:使用伪头部c...
分类:其他好文   时间:2015-03-12 20:49:24    阅读次数:124
Search for a Range
Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the ord...
分类:其他好文   时间:2015-03-12 20:48:41    阅读次数:114
Android之NetworkOnMainThreadException异常
看名字就应该知道,是网络请求在MainThread中产生的异常先来看一下官网的解释:Class OverviewThe exception that is thrown when an application attempts to perform a networking operation on...
分类:移动开发   时间:2015-03-12 20:50:59    阅读次数:138
属性列表
在Cocoa中,有一类名为属性列表的对象,常简称为plist.这些列表包含Cocoa知道如何操作的一组对象。具体来讲,Cocoa知道如何将它们保存到文件中并进行加载。属性列表类包括NSArray,NSDictionary,NSString,NSNumber,NSDate和NSData,以及它们的变体...
分类:其他好文   时间:2015-03-12 20:50:48    阅读次数:122
最长上升子序列
#include #include #include #include using namespace std;const int Maxn=1010;int dp[Maxn];int main(){ int t; int n,num[Maxn]; while(~scanf("%d...
分类:其他好文   时间:2015-03-12 20:48:10    阅读次数:119
make clean vs make clobber
make is pretty smart, and picks up what has changed from the last build, so if you run repo sync and then build without cleaning, in most cases it sho...
分类:其他好文   时间:2015-03-12 20:47:48    阅读次数:238
每日必读(2) --Base64
一、 base64是什么?按照RFC2045的定义,Base64被定义为:Base64内容传送编码被设计用来把任意序列的8位字节描述为一种不易被人直接识别的形式。(The Base64 Content-Transfer-Encoding is designed to represent arbitr...
分类:其他好文   时间:2015-03-12 20:47:27    阅读次数:133
Linux 下 git连接github的使用
1、安装gitsudo apt-get install git2、创建github帐号3、Linux创建SSH密钥:ssh-keygen //一直默认4、将公钥加入到Github账户信息Account Settings -> SSH Key5、测试验证是否成功ssh -T git@github.co...
分类:系统相关   时间:2015-03-12 20:47:48    阅读次数:136
poj3009——迭代加深搜索
POJ 3009 迭代加深搜索Curling 2.0Time Limit:1000MSMemory Limit:65536KTotal Submissions:12986Accepted:5460DescriptionOn Planet MM-21, after their Olympic game...
分类:其他好文   时间:2015-03-12 20:49:35    阅读次数:176
2089条   上一页 1 ... 18 19 20 21 22 23 24 ... 123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!