链接:https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence/ 代码: class Solution { public: int findLengthOfLCIS(vector<int>& nums) { ...
分类:
其他好文 时间:
2020-05-23 00:13:44
阅读次数:
45
链接:https://leetcode-cn.com/problems/search-in-rotated-sorted-array/ 代码: #include <algorithm> class Solution { public: int search(vector<int>& nums, in ...
分类:
编程语言 时间:
2020-05-23 00:11:15
阅读次数:
50
链接:https://leetcode-cn.com/problems/longest-consecutive-sequence/ 代码: class Solution { public: int longestConsecutive(vector<int>& nums) { int n = num ...
分类:
其他好文 时间:
2020-05-23 00:10:02
阅读次数:
46
AAC共有9种规格,以适应不同的场合的需要: MPEG-2 AAC LC 低复杂度规格(Low Complexity)--比较简单,没有增益控制,但提高了编码效率,在中等码率的编码效率以及音质方面,都能找到平衡点 MPEG-2 AAC Main 主规格 MPEG-2 AAC SSR 可变采样率规格( ...
分类:
其他好文 时间:
2020-05-18 16:52:14
阅读次数:
65
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1015/ 代码: #include <iostream> #include <algorithm> using namespace std; class S ...
分类:
其他好文 时间:
2020-05-18 01:07:50
阅读次数:
71
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1011/ 代码: class Solution { public: string reverseWords(string s) { int len = s. ...
分类:
其他好文 时间:
2020-05-18 01:02:43
阅读次数:
81
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1044/ 代码: #include <string> #include <algorithm> using namespace std; class Sol ...
分类:
其他好文 时间:
2020-05-18 01:00:39
阅读次数:
58
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1013/ 代码: #include <stack> class Solution { public: string simplifyPath(string ...
分类:
其他好文 时间:
2020-05-18 00:23:56
阅读次数:
56
链接:https://leetcode-cn.com/explore/interview/card/bytedance/242/string/1014/ 代码: class Solution { public: string longestCommonPrefix(vector<string>& s ...
分类:
其他好文 时间:
2020-05-18 00:20:51
阅读次数:
72