摘要: 双指针 ```c++ vector twoSum(vector& nums, int target) { // 题目中说了这是一个递增数组,而且我需要两个数字组成s vector res; int smallDigit = 0, bigDigit = nums.size() - 1; // 这要结果 阅读全文
posted @ 2023-08-11 11:01 YaosGHC 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 这题以前做过,和 力扣-3 重复 ```c++ int lengthOfLongestSubstring(string s) { // 本来应该是用map,但是其实可以使用数组替代,下标对应了字母 unordered_map map; int len = s.size(),maxLen=0;// 初 阅读全文
posted @ 2023-08-11 09:09 YaosGHC 阅读(9) 评论(0) 推荐(0) 编辑