// 匹配 List<string> srcList = new List<string>(); List<string> linkList = new List<string>(); ...
分类:
Web程序 时间:
2019-01-09 12:15:54
阅读次数:
989
#include #include #include #include using namespace std; typedef struct Lnode { int data; Lnode *next; } Lnode,*linklist; void creat_back(linklist &a)... ...
分类:
其他好文 时间:
2018-12-27 23:08:28
阅读次数:
146
# @File: linklist class Node(object): def __init__(self, data): self.data = data self.next = None # 链表的实现:带头节点的链表 不带头节点的链表 # 带头节点的链表 # 头插法 def create_... ...
分类:
编程语言 时间:
2018-12-24 14:30:53
阅读次数:
196
#include #include #include #include using namespace std; typedef struct Lnode { int data; Lnode *next; } Lnode,*linklist; void creat_h(linklist &L) //... ...
分类:
其他好文 时间:
2018-12-23 22:20:13
阅读次数:
149
一起过来排好队,进来挨打 1.Leetcode tag LinkList "109.convert sorted list to binary search tree" ...
分类:
其他好文 时间:
2018-12-09 18:48:38
阅读次数:
215
一:arraylist扩容是扩容一半,vector是扩容一倍 二:linklist是双向列表 三:arraylist适合随机访问的情况,除了在尾部删除,插入外,其他情况的插入删除性能都比较慢,linklist随机访问比较慢 四: ...
分类:
其他好文 时间:
2018-11-24 14:34:05
阅读次数:
262
Status CreatAscend(LinkList &L,int n) { int j; LinkList p,q,s; if(n<=0) return ERROR; InitList(L); printf("请输入%d个元素:\n",n); s=(LinkList)malloc(sizeof( ...
分类:
其他好文 时间:
2018-11-22 23:57:38
阅读次数:
278
1、实验目的与要求 (1) 掌握Vetor、Stack、Hashtable三个类的用途及常用API; (2) 了解java集合框架体系组成; (3) 掌握ArrayList、LinkList两个类的用途及常用API。 (4) 了解HashSet类、TreeSet类的用途及常用API。 (5)了解Ha ...
分类:
编程语言 时间:
2018-11-11 15:01:02
阅读次数:
140
实验十一 集合 1、实验目的与要求 (1) 掌握Vetor、Stack、Hashtable三个类的用途及常用API; (2) 了解java集合框架体系组成; (3) 掌握ArrayList、LinkList两个类的用途及常用API。 (4) 了解HashSet类、TreeSet类的用途及常用API。 ...
分类:
编程语言 时间:
2018-11-11 14:59:19
阅读次数:
142
实验十一 集合 实验时间 2018-11-8 1、实验目的与要求 (1) 掌握Vetor、Stack、Hashtable三个类的用途及常用API; (2) 了解java集合框架体系组成; (3) 掌握ArrayList、LinkList两个类的用途及常用API。 (4) 了解HashSet类、Tre ...
分类:
其他好文 时间:
2018-11-11 14:17:38
阅读次数:
173