您现在的位置是:首页 > 习题答案 > LeetCode相关题解
推荐星级:
  • 1
  • 2
  • 3
  • 4
  • 5

LeetCode相关题解

更新时间:2019-12-23 11:25:09 大小:1M 上传用户:avrtercel查看TA发布的资源 标签:leetcode 下载积分:8分 评价赚积分 (如何评价?) 打赏 收藏 评论(0) 举报

资料介绍

本书籍通过最简单的数据结构讲起,并针对leetcode题库讲解了相应的题目,分析透彻,代码精炼易懂,是准备面试和换工作的必读书籍,主要是CC++语言代码。

部分文件列表

文件名 大小
leetcode-cpp(1).pdf 1M

部分页面预览

(完整内容请下载后查看)
LeetCode 题解  
戴方勤 ()  
最后更新 2014-7-7  
版权声明  
本作采用“Creative Commons 署名 -业性使用 -方式共享 3.0 Unported 许可协议  
(cc by-nc-sa)”进行许可。
内容简介  
本书的目标读者是  
接触 ACM 算法竞赛的新手。  
本书含了 LeetCode Online Judge() 所有题目的答案,所有  
代码经过精心编写,编码规良好,适合读者反揣摩,仿,甚至在纸上默写。  
全书的代码,使用 C++ 11 的编写,并在 LeetCode Online Judge 上测试通过。本书中  
的代码规,跟在公司中的工程规略有不,为了使代码短(方便迅实现):  
所有代码都单一文件。这因为一般 OJ 网站,提交代码的时候只有一个文本框,  
如果还按照标准做法,比如分为头文件.h 代码.cpp,无法在网站上提交;  
• Shorter is better。能递归则一定不用栈;能用 STL 则一定不自己实现。  
不提倡御式编程。不需要检查 malloc()/new 返回的指针否为 nullptr;不需要检  
内部函数入口参数的有效性。  
本手册假定读者已经学数据结构x《算法y 这两门课练掌 握 C++ Java。  
准备去北美找工作的码农,也适用于在国内找工作的码农,以及刚  
GitHub 地址  
本书开源  
的,GitHub 地址:
北美求职微博群  
我和我的小伙伴们在这里:
x
《数据结构严蔚敏等著,清华大学出版社,
y
AlgorithmsRobert Sedgewick, Addison-Wesley Professional,
i
目录  
1 章 编程技巧  
1
2.1.20 Set Matrix Zeroes . . . . 33  
2.1.21 Gas Station . . . . . . . 35  
2.1.22 Candy . . . . . . . . . . 35  
2.1.23 Single Number . . . . . 37  
2.1.24 Single Number II . . . . 38  
2.2 单链表 . . . . . . . . . . . . . 39  
2.2.1 Add Two Numbers . . . 40  
2.2.2 Reverse Linked List II . 41  
2.2.3 Partition List . . . . . . 42  
2 章 线性表  
2
2.1 数组 . . . . . . . . . . . . . . .  
2
2.1.1 Remove  
Duplicates  
from Sorted Array . . .  
2
3
4
5
6
8
2.1.2 Remove  
Duplicates  
from Sorted Array II . .  
2.1.3 Search in Rotated  
Sorted Array . . . . . .  
2.2.4 Remove  
Duplicates  
2.1.4 Search in Rotated  
Sorted Array II . . . . .  
from Sorted List . . . . 43  
2.2.5 Remove  
Duplicates  
2.1.5 Median of Two Sorted  
Arrays . . . . . . . . . .  
from Sorted List II . . . 44  
2.2.6 Rotate List . . . . . . . 45  
2.2.7 Remove Nth Node  
From End of List . . . . 46  
2.1.6 Longest Consecutive  
Sequence . . . . . . . .  
2.1.7 Two Sum . . . . . . . . 10  
2.1.8 3Sum . . . . . . . . . . 11  
2.1.9 3Sum Closest . . . . . . 13  
2.1.10 4Sum . . . . . . . . . . 14  
2.1.11 Remove Element . . . . 17  
2.1.12 Next Permutation . . . . 18  
2.1.13 Permutation Sequence . 20  
2.1.14 Valid Sudoku . . . . . . 22  
2.1.15 Trapping Rain Water . . 24  
2.2.8 Swap Nodes in Pairs . . 47  
2.2.9 Reverse Nodes in k-Group 48  
2.2.10 Copy List with Random  
Pointer . . . . . . . . . 50  
2.2.11 Linked List Cycle . . . . 51  
2.2.12 Linked List Cycle II . . 52  
2.2.13 Reorder List . . . . . . 53  
2.2.14 LRU Cache . . . . . . . 54  
2.1.16 Rotate Image . . . . . . 27 3 章 字符串  
57  
2.1.17 Plus One . . . . . . . . 28  
2.1.18 Climbing Stairs . . . . . 29  
2.1.19 Gray Code . . . . . . . 30  
3.1 Valid Palindrome . . . . . . . . 57  
3.2 Implement strStr() . . . . . . . . 58  
3.3 String to Integer (atoi) . . . . . 60  
ii  

全部评论(0)

暂无评论

上传资源 上传优质资源有赏金

  • 打赏
  • 30日榜单

推荐下载