-
Notifications
You must be signed in to change notification settings - Fork 135
Description
要求
- 每周从覃超老师布置的题目中,至少完成并提交两道算法题
- 围绕每周重点学习的算法知识点,撰写一篇有观点和思考的技术文章或总结,切忌流水账。
作业提交 Deadline
2020年6月14日 23:59 (以当地时间为准)
未按时提交作业,会在个人作业总分中 -2 分
本周作业概述
本周需要完成学习的视频内容:
- 第 9 课 | 深度优先搜索和广度优先搜索
- 第10课 | 贪心算法
- 第11课 | 二分查找
以上三课视频后,覃超老师都给出了大家可以练手的算法题。
本周算法习题库:
简单:
https://leetcode-cn.com/problems/lemonade-change/description/
https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii/description/
https://leetcode-cn.com/problems/assign-cookies/description/
https://leetcode-cn.com/problems/walking-robot-simulation/description/
使用二分查找,寻找一个半有序数组 [4, 5, 6, 7, 0, 1, 2] 中间无序的地方
说明:同学们可以将自己的思路、代码写在第 4 周的学习总结中
中等:
https://leetcode-cn.com/problems/word-ladder/description/
https://leetcode-cn.com/problems/number-of-islands/
https://leetcode-cn.com/problems/minesweeper/description/
https://leetcode-cn.com/problems/jump-game/
https://leetcode-cn.com/problems/search-in-rotated-sorted-array/
https://leetcode-cn.com/problems/search-a-2d-matrix/
https://leetcode-cn.com/problems/find-minimum-in-rotated-sorted-array/
困难
https://leetcode-cn.com/problems/word-ladder-ii/description/
https://leetcode-cn.com/problems/jump-game-ii/