码迷,mamicode.com
首页 >  
搜索关键字:datastructure    ( 155个结果
【DataStructure】Some useful methods about linkedList(三)
Method 4: Gets the value of element number i For example, if list is {22, 33, 44, 55, 66, 77, 88, 99}, then get(list, 2) will return 44. Solution 1: static int get(Node list, int i) { if (i < 0) ...
分类:其他好文   时间:2014-07-08 14:07:52    阅读次数:262
【DataStructure】Linked Data Structures
Arrayss work well for unordered sequences, and even for...
分类:其他好文   时间:2014-06-22 21:45:52    阅读次数:184
【dataStructure】 Arrays and Java Source Review
According to the order of data structure book, Arrays should be introduced in the frist time. When reviewing the some information related to arrays, I feel shocked that many useful classes and methods...
分类:编程语言   时间:2014-06-22 18:13:18    阅读次数:316
【DataStructure】Some useful methods for arrays
Last night it took me about two hours to learn arrays. For the sake of less time, I did not put emphaises on the practice question, just now when reading the book, I found that some methods referred...
分类:其他好文   时间:2014-06-22 17:14:10    阅读次数:152
单链表
单链表是一种链式存储结构,它可以通过一组任意的存储单元来存储线性表中的数据元素。头文件 声明//// linklist.h// Datastructure//// Created by zhou on 14-5-25.// Copyright (c) 2014年 zhou. All righ...
分类:其他好文   时间:2014-05-25 20:06:02    阅读次数:227
155条   上一页 1 ... 14 15 16
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!