码迷,mamicode.com
首页 > 2014年08月14日 > 全部分享
Linux程序设计学习笔记----多线程编程基础概念与基本操作
转载请注明出处,谢谢....
分类:编程语言   时间:2014-08-14 16:53:08    阅读次数:423
ScrollView 嵌套ListView 滑动冲突,与显示不全
import android.content.Context; import android.util.AttributeSet; import android.widget.ListView; /** * * @author jiarh *2014-8-14 */ public class UserListView extends ListView { public User...
分类:其他好文   时间:2014-08-14 16:52:58    阅读次数:177
struts2 autocompleter 动态下拉菜单
struts2 autocompleter 动态下拉菜单...
分类:其他好文   时间:2014-08-14 16:52:48    阅读次数:185
字典基础总结,初学者必备
OC数据字典的总结,初学者必备,字典的用法...
分类:其他好文   时间:2014-08-14 16:52:38    阅读次数:114
django表单使用forms.ModelForm
win7 python2.7 django 1.6.5 因为使用数据库sqlite,项目中有models.py,所以使用方便的forms.ModelForm处理表单。 上传图像文件使用默认的defaultstorage。 1、settings.py里增加两行media的定义: #Media MEDIA_ROOT = 'e:/Depot/media' MEDIA_URL = '/...
分类:其他好文   时间:2014-08-14 16:52:08    阅读次数:318
Choose the best route
Problem Description One day , Kiki wants to visit one of her friends. As she is liable to carsickness , she wants to arrive at her friend’s home as soon as possible . Now give you a map of the city...
分类:其他好文   时间:2014-08-14 16:51:58    阅读次数:219
【翻译】EXTJS 编码风格指南与实例
Ext JS风格指南: 熟知的且易于学习 快速开发,易于调试,轻松部署 组织良好、可扩展和可维护...
分类:Web程序   时间:2014-08-14 16:51:56    阅读次数:374
信号完整性之差分对设计4(差分对约束)
建立差分对约束: (1)设置差分对约束,从SigXplorer PCB SI GXL打开diff_sim.top拓扑。 (2)执行Setup-Constraints,弹出Set Topology Constraints对话框 (3)选择Diff Pair标签页,设置如图: (4)单击OK,关闭对话框,File->Save,保存拓扑,File->Exit。 (5)应...
分类:其他好文   时间:2014-08-14 16:51:53    阅读次数:269
POJ 1590 Palindromes 肯爹题
本题就是专门肯人的题目,给出的列子也是故意误导人的。 其实就考一点:没有mirror的字母存在的时候就可以判定整个字符串不是mirror! 如下面的mirrored string的叙述: A mirrored string is a string for which when each of the elements of the string is changed to its rever...
分类:其他好文   时间:2014-08-14 16:51:28    阅读次数:208
【Leetcode长征系列】Sqrt(x)
原题: Implement int sqrt(int x). Compute and return the square root of x. ==============================以下为引用==================================== 牛顿迭代法    为了方便理解,就先以本题为例:    计算x2 = n的解,令f(...
分类:其他好文   时间:2014-08-14 16:51:18    阅读次数:263
使用HBASE用到的几个filter SingleColumnValueFilter,RowFilter,ValueFilter
SingleColumnValueFilter 过滤某列值大于多少小于多少:                List filters = new ArrayList();               filters.add(  new SingleColumnValueFilter(Bytes.toBytes("pinfo"),  //列族...
分类:其他好文   时间:2014-08-14 16:51:08    阅读次数:338
一道小题:从一个数组里产生所有可能的乘积组合
比如给定一个数组[2,3,11] 要求产生[1,2,3,6,11,22,33,66]观察可得:[2,3] 产生了[1,2,3,6] 的乘积可能。当加入11时,11会和现有的每一个元素都相乘得到[1,2,3,6,11,22,33,66]public static void allProducts(int[] arr) { List list = new ArrayList(); list.a...
分类:其他好文   时间:2014-08-14 16:50:58    阅读次数:223
STL算法分类记忆
STL算法主要是我们强大的标准库中以迭代器或数值或函数对象为参数预先定义好的一系列算法操作。      在STL算法分类中首先要提的就是两个普遍存在的后缀:      _if         _copy       其中这两个后缀的作用分别是:一、对于_if,如果算法存在两种形式,参数的个数相同,其中一种形式的参数要求传递一个值,而另一种形式则会要求传递一个函数或仿函数(函数对...
分类:其他好文   时间:2014-08-14 16:50:38    阅读次数:235
Crane(线段树)
Description ACM has bought a new crane (crane -- je?áb) . The crane consists of n segments of various lengths, connected by flexible joints. The end of the i-th segment is joined to the beginning...
分类:其他好文   时间:2014-08-14 16:50:28    阅读次数:240
iOS页面跳转及数据传递
iOS页面跳转: 第一种 [self.navigationController pushViewController:subTableViewController  animated:YES];  //描述:通过 NSNavigationBar 进行跳转    [self.navigationController popViewControllerAnimated:Y...
分类:移动开发   时间:2014-08-14 16:50:18    阅读次数:227
Android-Universal-Image-Loader学习笔记(4)--download
ImageLoader...
分类:移动开发   时间:2014-08-14 16:50:09    阅读次数:210
ios 页面跳转之间传递数据----通过delegate
主要参考了这篇博客http://mobile.51cto.com/iphone-284116.htm 主要用到了,两个类,一个delegate a类,调用b类,当b类执行之后,需要把一个数据传递给a类,a类把这个数据显示出来。 1.delegate,就这一个头文件就足够了。在类中去实现这个代理方法 #import  @protocolUIViewPassValueDe...
分类:移动开发   时间:2014-08-14 16:49:59    阅读次数:215
2225条   上一页 1 ... 53 54 55 56 57 58 59 ... 131 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!