叫我皮卡丘
叫我皮卡丘
全部文章
数据结构(浙大)
100(1)
1064(1)
14(1)
20(1)
28(1)
53(1)
58(1)
69(1)
70(1)
C++(2)
cpp(9)
DFS(1)
Eclipse(1)
Java(5)
LeetCode(1)
map(1)
mysql(1)
PAT(32)
PAT乙级题解(47)
SSM整合(1)
vector(1)
乙级(2)
二叉搜索树(1)
二叉树的镜像(1)
二进制枚举子集(1)
位运算(1)
剑指offer(3)
双指针(1)
哈希表(3)
回文数(1)
图(1)
基础练习(2)
基础练习 (3)
堆(1)
字母图形 (1)
并查集(1)
排序(1)
散列表(1)
数据结构(3)
数组(1)
数组的度(1)
最小生成树(1)
最短路(1)
最短路算法(1)
未归档(127)
机器人(1)
杂文(1)
目录(2)
算法训练(1)
线性结构(1)
结构体排序(1)
蒜头君学英语(1)
计蒜客(1)
超过5名学生的课(1)
软件水平考试(1)
链表(2)
闰年判断(1)
队列(1)
题解(12)
高斯日记(1)
归档
标签
去牛客网
登录
/
注册
叫我皮卡丘的博客
seize the monment
全部文章
/ 数据结构(浙大)
(共36篇)
数据结构(十七)散列查找
文章目录 散列查找 1. 基本思想 2. 基本工作 3. 散列函数的构造 1. 考虑因素 2. 数字关键词 1. 直接定址法 2. 除留余数法 3. 数字分析法 ...
2018-11-27
0
514
《数据结构》KMP 串的模式匹配
题目 给定两个由英文字母组成的字符串 String 和 Pattern,要求找到 Pattern 在 String 中第一次出现的位置,并将此位置后的 String 的子串输出。如果找不到,则输出“Not Found”。 本题旨在测试各种不同的匹配算法在各种数据情况下的表现。各组测试数据特点如下...
2018-11-27
0
794
《数据结构》11-散列4 Hashing - Hard Version
题目 Given a hash table of size N, we can define a hash function H(x)=x%N. Suppose that the linear probing is used to solve collisions, we can easily o...
2018-11-25
0
779
《数据结构》11-散列2 Hashing
题目 The task of this problem is simple: insert a sequence of distinct positive integers into a hash table, and output the positions of the input numbe...
2018-11-25
0
567
《数据结构》11-散列1 电话聊天狂人
题目 给定大量手机用户通话记录,找出其中通话次数最多的聊天狂人。 输入格式: 输入首先给出正整数N(≤10 <math> <semantics> <mrow> <msup> <mi ...
2018-11-25
0
985
《数据结构》10-排序6 Sort with Swap(0, i)
题目 Given any permutation of the numbers {0, 1, 2,…, N−1}, it is easy to sort them in increasing order. But what if Swap(0, *)is the ONLY operation th...
2018-11-23
0
727
《数据结构》09-排序3 Insertion or Heap Sort
题目 According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and growing a sorted output list. Each iteration, i...
2018-11-21
0
520
《数据结构》09-排序2 Insert or Merge
分析 According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and growing a sorted output list. Each iteration, i...
2018-11-21
0
603
《数据结构》09-排序1 排序
题目 给定N个(长整型范围内的)整数,要求输出从小到大排序后的结果。 本题旨在测试各种不同的排序算法在各种数据情况下的表现。各组测试数据特点如下: 数据1:只有1个元素; 数据2:11个不相同的整数,测试基本正确性; 数据3:10 <math> ...
2018-11-21
0
568
《数据结构》08-图8 How Long Does It Take
题目 Given the relations of all the activities of a project, you are supposed to find the earliest completion time of the project. Input Specification...
2018-11-19
0
796
首页
上一页
1
2
3
4
下一页
末页