码迷,mamicode.com
首页 >  
搜索关键字:list item    ( 66280个结果
约瑟夫环 java实现
问题: N个人从1到N编号,围城一圈,从1开始报数, 数到X时,将X的编号输出,并将那个人踢出, 下一个从1再开始报数,直到所有人都出去 思路: 就是计数,移除,没有太深的思想,直接上代码: package test; import java.util.ArrayList; import java.util.List; import java.util.Scanner; /**...
分类:编程语言   时间:2014-05-01 21:58:20    阅读次数:393
SparseArray替代hashmap
最近编程时,发现一个针对HashMap的一个提示: 翻译过来就是:用SparseArray来代替会有更好性能。 那我们就来看看源码中SparseArray到底做了哪些事情: 一、构造 从构造方法我们可以看出,它和一般的List一样,可以预先设置容器大小,默认的大小是10: [java] view plaincopy public Sp...
分类:其他好文   时间:2014-05-01 21:57:37    阅读次数:483
ios7 自定义UINavigationBar UIBarButtonItem 10px的偏移纠正的两种解决方案
方案一:利用UINavigationBar 自带的布局item(Fixed space Bar Button Item)来适配ios7. 其实就是在原来返回按钮的位置上在多加一个占位的Item 为UINavigationBar 写一个分类。UINavigationItem+correct_offset.h #import @interface UINavigationIte...
分类:移动开发   时间:2014-05-01 17:29:39    阅读次数:525
leetcode__Merge k Sorted Lists
Merge k Sorted Lists  Total Accepted: 9746 Total Submissions: 41674My Submissions Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity....
分类:其他好文   时间:2014-05-01 17:11:32    阅读次数:234
android listView 滑动加载数据 该数据是服务端获取的
package com.sunway.works.applycash; import java.util.ArrayList; import java.util.Calendar; import java.util.HashMap; import java.util.List; import java.util.Map; import com.sunway.works....
分类:移动开发   时间:2014-04-30 22:27:40    阅读次数:456
C语言可变参数函数实现原理
大家对va_list , va_start,va_arg,va_end 不陌生吧? 对scanf, printf类型 (如sscanf,sprintf)的带可变参数的函数的原理知道多少呢?  如果有兴趣了解的 话,推荐大家阅读: http://www.cnblogs.com/acutus/p/variable-parameter.html          当然,值得指出...
分类:编程语言   时间:2014-04-30 22:21:40    阅读次数:364
ubuntu杂谈(一)----- ubuntu14.04 上安装ffmpeg
环境:ubuntu14.04 1.打开 https://launchpad.net/~jon-severinsson/+archive/ffmpeg 这个网址。选择你的系统版本(ubuntu 14.04) 2.将源添加到/etc/apt/sources.list 3.更新源 sudo apt-get update 4.安装ffmpeg sudo apt-...
分类:其他好文   时间:2014-04-29 13:35:21    阅读次数:428
链表《2》使用函数操作链表
使用函数操作链表 1:计算链表中结点的个数:定义一个Length_list()函数用于计算链表中结点的个数 函数代码: //计算链表中结点的个数 void Length_list(PNODE pHead) { PNODE p = pHead->pNext; int len = 0; while(NULL != p) { len++; p = p->pNext; ...
分类:其他好文   时间:2014-04-29 13:28:21    阅读次数:302
Build Tree View Structure for SharePoint List Data
Build Tree View Structure for SharePoint List Data 将SharePoint中的数据树状显示...
分类:其他好文   时间:2014-04-29 13:26:20    阅读次数:361
leetcode day5 -- Reorder List && Linked List Cycle II
1、 ?? Reorder List  Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do this in-place without altering the nodes' values. For example, Given {1,2...
分类:其他好文   时间:2014-04-29 13:16:21    阅读次数:250
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!