基础数据结构复习-动态规划
温故而知新。基础虽然简单,但是万变的根本。
1 | /*动态规划经典问题汇总 |
温故而知新。基础虽然简单,但是万变的根本。
1 | /*动态规划经典问题汇总 |
点击:题目链接:请实现 copyRandomList 函数,复制一个复杂链表。在复杂链表中,每个节点除了有一个 next 指针指向下一个节点,还有一个 random 指针指向链表中的任意节点或者 null。
点击:题目链接:给你一个整数数组 nums ,设计算法来打乱一个没有重复元素的数组。
实现 Solution class:
Solution(int[] nums) 使用整数数组 nums 初始化对象
int[] reset() 重设数组到它的初始状态并返回
int[] shuffle() 返回数组随机打乱后的结果
温故而知新。基础虽然简单,但是万变的根本。
点击:题目链接:一个长度为n-1的递增排序数组中的所有数字都是唯一的,并且每个数字都在范围0~n-1之内。在范围0~n-1内的n个数字中有且只有一个数字不在该数组中,请找出这个数字。
示例 1:
输入: [0,1,3]
输出: 2
示例 2:
输入: [0,1,2,3,4,5,6,7,9]
输出: 8
微软官方文档介绍: A virtual function is a member function that you expect to be redefined in derived classes.When you refer to a derived class object using a pointer or a reference to the base class, you can call a virtual function for that object and execute the derived class’s version of the function.
本质上,虚函数是成员函数的一种。它主要应用在多态的场景。它是为了我们能够在定义子类时可以重载从父类继承过来的成员函数(即虚函数)。如果不需要重载,我们也可以直接调用执行它,把它当作普通的成员函数。
最近在练口语,网上搜了很多教程,试了几个都不是很适合我(或许是坚持不下来)。最后还是打算读读名人的演讲稿,练习口语的时候还能练练词汇语法和口才。
I am honored to be with you today at your commencement from one of the finest universities in the world. I never graduated from college. Truth be told, this is the closest I’ve ever gotten to a college graduation. Today I want to tell you three stories from my life. That’s it. No big deal. Just three stories.