E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
list<map>
第三届ACM山东省赛I题_Chess_STL
代码如下: #include <cstdio> #include <
map>
; #include <cstring> #include <vector&
·
2015-11-12 22:13
ACM
C#泛型:从泛型定义开始
Generic是Framework 2.0的新元素,中文名字称之为“泛型” ,特征是一个带有尖括号的类,比如
List<
; T> C#自定义泛型类用得最广泛,就是集合(Collection
·
2015-11-12 22:23
C#
朝花夕拾-android 自定义application 管理activity的生命周期
增加一个list成员保存,一些关键的已创建的activity实例: 1 private
List<
;Activity> activityList = new LinkedList<
·
2015-11-12 22:14
application
java实现数据库分页
pageIndex //页码 * @param pageSize//每页数据的条数 * @param rowCount//总的数据条数 * @return */ private
List
·
2015-11-12 22:23
java实现
异步 进程 读取文件内容
class Class1 { public delegate int AsyncEventHandler(int a); static
List<
;string>
·
2015-11-12 22:22
读取文件
第一篇 博客 记录一个自己写的性能超级差的方法 以后想办法找出原因
public static void QuickSort<T>(int sta, int end,
List<
;T> rows, Func<
List<
;T
·
2015-11-12 22:17
性能
C#语言的新特性:集合初始化器(Collection Initializers)
譬如,假如我要把三个人加到一个基于泛型的类型为Person的List集合中去的话,我可以写下面这样的编码:
List<
;Person> people
·
2015-11-12 22:15
Collection
HDU 1498
pid=1498 最小顶点覆盖,建立二分图求最大匹配 #include <iostream> #include <cstdio> #include <
map
·
2015-11-12 21:22
HDU
HDU 4068
以此为鉴 #include <iostream> #include <cstdio> #include <cstring> #include <
map
·
2015-11-12 21:21
HDU
HDU 1198
pid=1198 裸并查集,主要工作在根据题目给出关系构图 #include <iostream> #include <cstdio> #include <
map
·
2015-11-12 21:18
HDU
HDU 1027 Ignatius and the Princess II
View Code #include <iostream> #include <
map>
; #include <string> #in
·
2015-11-12 21:05
HDU
HDU 4079 Happy Telephones
View Code #include <iostream> #include <
map>
; #include <string> #include <algorithm
·
2015-11-12 21:05
APP
HDU 1263 水果
pid=1263 STL中map的练习 View Code #include <iostream> #include <
map>
; #include <string
·
2015-11-12 21:04
HDU
hdu 3333 Turing Tree 成段不重复求和
2012/02/13/2349290.html View Code #include<cstdio> #include<cstring> #include<
map
·
2015-11-12 21:37
tree
codeforces 46D 线段树 区间合并
View Code #include<cstdio> #include<cstring> #include<vector> #include<
map
·
2015-11-12 21:35
codeforces
.net中除去IList中的多余项
1 IList<ActionInfo> tempList = new
List<
;ActionInfo>(); 2 IList<ActionInfo> tempActionList
·
2015-11-12 21:02
.net
It's Cool,ComboBox Bind Generic Dictionary
平时我们绑定一个Combobox控件的数据时,提供
List<
;T>的数据源是支持的,可是
List<
;String,Object> 不存在,我们有时候需要用Dictionary<
·
2015-11-12 21:52
combobox
hdu 4096 判断路径
<cstdio> #include<cstring> #include<cmath> #include<string> #include<
map
·
2015-11-12 21:08
HDU
快速排序
代码如下: private static void quicksort(ref
List<
;int> sqList3, int low, int high) //OK
·
2015-11-12 21:42
快速排序
1350. Canteen(map)
2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<
map
·
2015-11-12 21:42
ant
android之ArrayAdapter的重写
public ArrayAdapter(Context context,int textViewResourceId,
List<
;T> objects) 上面的这行代码来装配数据,要装配这些
·
2015-11-12 21:43
ArrayAdapter
这个在干吗?
*/ private
List<
;String> mActionList = new ArrayList<String
·
2015-11-12 21:33
CSLA框架试用:业务对象分类
平常操作对象大都是简单的对象,这里说简单是指它只具备对象属性及对象行为这种单一功能(还有些只是数据填充器),如获取一个客户信息,我们只返回包装了客户信息数据的实体就可以,而要获取列表,只需要返回
List
·
2015-11-12 21:27
框架
C#实现的内存分页机制的一个实例
全局主索引表管理类) public class MuliPageIndexFeatureClass : IDisposable { protected
List
·
2015-11-12 21:58
C#
从ArrayList里找出特定元素的实验
public static void main(String[] args) {
List
·
2015-11-12 21:09
ArrayList
Collection类学习笔记
binarySearch原理: public static index halfSearch(
List<
;String> list, String key)
·
2015-11-12 21:41
Collection
Arrays类学习笔记
String[] arr = {“abc”,”cc”};
List<
;String> list = Arrays.asList(arr); /* 如果数组中的元素都是对象
·
2015-11-12 21:40
Arrays
Android---intent传递参数
在实际项目中,页面之间传值,除了以上几种,经常还有传递Object对象、List类型、
List<
;Object>类型和全局变量等等的需求。 一、传递
List<
;Stri
·
2015-11-12 21:05
android
对list集合去重操作
public class RemoteTheSameDataInList { public static void main(String[] args) {
List
·
2015-11-12 21:38
list
regex
cstdlib> #include <iostream> #include <algorithm> #include <cstring> #include <
map
·
2015-11-12 20:38
regex
学习记录---- viewpager里嵌套listview中adapter的写法
Administrator * */ class InvestManageViewPagerAdapter extends PagerAdapter{ private
List
·
2015-11-12 20:30
viewpager
TreeView控件
private string _name; private int _parentId; private Tree _parent; private
List
·
2015-11-12 20:36
treeview
图像映射
area 元素总是嵌套在 <
map>
; 标签中。 注释:<img> 标签中的 usemap 属性与 map 元素 name 属性相关联,创建图像与映射之间的联系。
·
2015-11-12 20:44
映射
【LeetCode】Path Sum 2 --java 二叉数 深度遍历,保存路径
public
List<
;
List<
;Integer>> pathSum(TreeNode root, int sum) {
List<
;
List<
;In
·
2015-11-12 20:19
LeetCode
XML文件的组织
最开始的写法是这样的: <Map from=”H” to=”VK_LEFT” /> 这样子解析起来也不麻烦,但感觉写XML文件的时候太啰嗦,就寻思着改成下面的写法: <
Map
·
2015-11-12 20:41
xml
HDU 1004 Let the Balloon Rise
学习了一下一下map的迭代器,刷一题裸题练习一下: #include <iostream> #include<
map>
; #include<string>
·
2015-11-12 20:06
HDU
HDU 1058 Humble Numbers
题解:用优先队列,建立小根堆,然后每次取出最小的,将其乘上题目要求的数字再加入优先队列,至于重复的问题,用映射来解决 #include <queue> #include <
map
·
2015-11-12 20:01
number
codeforces Upgrading Array
1 #include <cstdio> 2 #include <cstring> 3 #include <
map>
; 4
·
2015-11-12 20:02
codeforces
cf C On Number of Decompositions into Multipliers
1 #include <cstdio> 2 #include <cstring> 3 #include <
map>
; 4 #includ
·
2015-11-12 20:55
position
hdu 5131 Song Jiang's rank list
1 #include <cstdio> 2 #include <cstring> 3 #include <string> 4 #include <
map
·
2015-11-12 20:35
list
ASP.NET MVC Beta 新特性之 IValueProvider
Post的对象,Post对象有一个Tags属性和Categories属性,他们的类型分别是:Post.Tags : StateList<string> (BlogEngine.NET 中的一个
List
·
2015-11-12 20:54
Provider
WCF批量打开服务
利用循环,读取配置文件,打开所有的代理服务 和关闭代理服务的方法 //list列表 ,用于存储打开的服务列表
List<
;ServiceHost> _host = new
·
2015-11-12 19:35
WCF
POJ 2503 Babelfish (STL map的应用)
View Code #include <stdio.h> #include <
map>
; #include <string> using namespace
·
2015-11-12 19:35
map
HibernateTemplate方法的使用
1、查询帖子(Post)为例 查找所有的帖子 public
List<
;Post> findPosts() { String hql = "from
·
2015-11-12 19:51
Socket 群聊功能
1、Server端: 拥有一个存放与客户端连接对象的
List<
;socket> 有一个客户端发信息后 遍历List 实现群发功能 代码如下: 1 package com.socket
·
2015-11-12 19:37
socket
C#泛型列表List
基本用法总结
C#泛型列表
List<
;T>基本用法总结 namespace SampleListT{ class Program {  
·
2015-11-12 19:54
list
Hibernate的条件查询的几种方式
占位符) public
List<
;UserPO> LoginUser(UserPO up)throws Exception{ Session session = HibernateSessionFactory.getSession
·
2015-11-12 19:11
Hibernate
LINQ to Object
LinQ to Object是指对随意IEnumerable或Ienumerable<T>集合使用linq查询.它可取代查询不论什么可枚举的集合.如
List<
;T>,Array或Dictionary
·
2015-11-12 19:43
object
.Net 数组去除重复项
string[] strs = str.Split(new char[1] { '/' }, StringSplitOptions.RemoveEmptyEntries);
List
·
2015-11-12 18:32
.net
EF中执行存储过程,获取output返回值
分享下曲折的经历: public int AddVote(int titleId, int blockId, int typeId) {
List
·
2015-11-12 18:41
存储过程
上一页
6
7
8
9
10
11
12
13
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他