字符串
zhaohoutao
这个作者很懒,什么都没留下…
展开
-
LeetCode-165 比较版本号
比较版本号class Solution {public: int compareVersion(string version1, string version2) { //比较版本号的算法怎么实现呢 int len1 = version1.size(); int len2 = version2.size(); int index1 = 0; int index2 = 0;...原创 2019-07-13 21:46:31 · 102 阅读 · 0 评论 -
LeetCode-128 最长连续序列
最长连续序列注意:用过的元素要删除掉,否则会时间超时class Solution {public: int longestConsecutive(vector<int>& nums) { //使用set的存储使得他不会出现重复 unordered_set<int> map_s(nums.begin(), nums.end()); int re...原创 2019-07-23 20:49:13 · 90 阅读 · 0 评论 -
LeetCode-205 同构字符串 LeetCode-290 单词规律
同构字符串class Solution {public: bool isIsomorphic(string s, string t) { //使用map映射机制么? //对于map的特性是key不可以重复的,但是value可以重复,所以需要再value上加功夫 map<char,char> yingshe; ...原创 2019-07-17 00:04:15 · 151 阅读 · 0 评论 -
LeetCode 756 金字塔转换矩阵
金字塔转换矩阵class Solution {public: bool huisu(string& nowStr, string nextStr, vector<string> allowed) { int nowStrsize = nowStr.size(); int nextStrsize = nextStr.size(...原创 2019-07-22 18:49:40 · 235 阅读 · 0 评论