数据结构
文章平均质量分 81
强哥快飞
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
转 一篇关于java中简单集合类的详解
关于java中集合类的详解,写的非常详细。有时间仔细阅读以下。 点击打开链接转载 2015-01-27 04:46:38 · 332 阅读 · 0 评论 -
单向链表的简单实现
java单向链表的简单实现。 关于单向链表 Advantages · Linked lists are a dynamic data structure, allocating the needed memory while the program is running. · Insertion and deletion node operations ar原创 2015-01-27 04:50:33 · 397 阅读 · 0 评论 -
单向链表的java简单实现
一种单向链表的简单实现java 关于单向链表 单向链表的数据结构可以分为两部分:数据域和指针域,数据域存储数据,指针域指向下一个储存节点的地址。 Advantages · Linked lists are a dynamic data structure, allocating the needed memory while the program is原创 2015-01-27 04:43:03 · 499 阅读 · 0 评论 -
The implement of Binary Search Tree (JAVA)
An implement of Binary Search Tree in JAVA Functions Create Insert Delete Find Min Max Display Search Traver原创 2015-01-28 08:19:39 · 482 阅读 · 0 评论 -
Stack 的 java 实现
用双向链表实现一个 堆栈 先入先出。 push() pop() isEmpty() peek() clear() import java.util.LinkedList; public class Stack { private LinkedList list = new LinkedList(); public void clear(){ lis原创 2015-01-02 10:27:29 · 394 阅读 · 0 评论 -
Queue 实现
Java queue 实现 先进后出 dequeue() enqueue() clear() isEmpty() firstElement() import java.util.LinkedList; public class Queue { private LinkedList list = new LinkedList(); public void clear(){原创 2015-01-02 10:48:48 · 319 阅读 · 0 评论 -
LeetCode 之 Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head. For example, Given linked list: 1->2->3->4->5, and n = 2. After removing the second node from the end, the原创 2015-01-03 04:37:28 · 327 阅读 · 0 评论
分享