码迷,mamicode.com
首页 >  
搜索关键字:lc    ( 989个结果
lc 最长连续递增序列
链接:https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence/ 代码: class Solution { public: int findLengthOfLCIS(vector<int>& nums) { ...
分类:其他好文   时间:2020-05-23 00:13:44    阅读次数:45
lc 搜索旋转排序数组
链接: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
lc 最长连续序列
链接: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
c++中显示中文
C++中显示中文问题 ...
分类:编程语言   时间:2020-05-21 19:41:10    阅读次数:64
AAC简介
AAC共有9种规格,以适应不同的场合的需要: MPEG-2 AAC LC 低复杂度规格(Low Complexity)--比较简单,没有增益控制,但提高了编码效率,在中等码率的编码效率以及音质方面,都能找到平衡点 MPEG-2 AAC Main 主规格 MPEG-2 AAC SSR 可变采样率规格( ...
分类:其他好文   时间:2020-05-18 16:52:14    阅读次数:65
lc 字符串相乘
链接: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
lc 翻转字符串里的单词
链接: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
lc 复原IP地址
链接: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
lc 简化路径
链接: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
lc 最长公共前缀
链接: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
989条   上一页 1 ... 6 7 8 9 10 ... 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!