码迷,mamicode.com
首页 >  
搜索关键字:list    ( 54897个结果
File Templates for web.xml & web-fragment.xml (Servlet 2.3, 2.4, 2.5 + 3.0)
As I sometimes need these, I have compiled a list of the valid headers of the web.xml and web-fragment.xml file for servlet version 2.3 until 3.0.Mayb ...
分类:Web程序   时间:2016-06-05 18:57:51    阅读次数:260
Excel——将内容导入
1.写入Excel文件的操作引入Microsoft.Office.Tools.Excel.dll 程序集 List<Person> list = new List<Person>() { new Person(){Name="张三",Gender="男",Age=21}, new Person(){ ...
分类:其他好文   时间:2016-06-05 18:28:17    阅读次数:117
.lib list for copy (Install opencv-2.4.13)
opencv_calib3d2413d.lib; opencv_contrib2413d.lib; opencv_core2413d.lib; opencv_features2d2413d.lib; opencv_flann2413d.lib; opencv_gpu2413d.lib; opencv ...
分类:其他好文   时间:2016-06-05 15:13:45    阅读次数:152
算法导论之链表
一、概念 (1)数组的线性序是由数组的下标决定的,链表中的顺序是由各对象中的指针所决定的 (2)链表结点结构 node *prev; node *next; int key; (3)链表结点 node *head; node *nil;//哨兵 (4)对链表的操作 LIST-SEARCH(L, k) LIST-INSERT(L, x) LIST-DELETE(L, x)...
分类:编程语言   时间:2016-06-05 14:07:11    阅读次数:378
[python]Substring
We can store strings in variable as a list of charactersvar = "this is a string" we can refer part of the string by print(var[0:5]) ...
分类:编程语言   时间:2016-06-05 13:47:53    阅读次数:134
[python]Tuple
A tuple is similar to list but can not be modified tuple1 = (1,) tuple2 = (1,2,3,4) to refer elemetn in a tuple var1 = tuple[0] var2 = tuple[-1] just ...
分类:编程语言   时间:2016-06-05 12:37:05    阅读次数:131
ubuntu中gdb调试工具的使用
首先有一段.c代码 1.可调试gcc编译:gcc -g -o xxx xxx.c 2.启动gdb调试 gdb xxx 3.在main函数处设置断点 break main 4.运行程序 run 5.其他调试命令 list(l)查看程序 break(b) 函数名:在某函数入口处添加断点 break 行号 ...
分类:数据库   时间:2016-06-05 12:27:41    阅读次数:747
[python]List
List is similar to array but beyond. A list can contial various types of data. list=["string", 1223, 2.718] to refer an element from a list, we can us ...
分类:编程语言   时间:2016-06-05 12:27:34    阅读次数:177
LeetCode:Remove Linked List Elements
Remove Linked List Elements Total Accepted: 65900 Total Submissions: 226939 Difficulty: Easy Remove all elements from a linked list of integers that have value val. Example Given: ...
分类:其他好文   时间:2016-06-05 11:14:09    阅读次数:129
352. Data Stream as Disjoint Intervals
问题描述: Given a data stream input of non-negative integers a1, a2, ..., an, ..., summarize the numbers seen so far as a list of disjoint intervals. 解题思路 ...
分类:其他好文   时间:2016-06-05 11:01:57    阅读次数:241
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!