玩命加载中 . . .

学习之旅
49/438-字母异位词分组 49/438-字母异位词分组
LeetCode 49. Group AnagramsLeetCode-49 Given an array of strings strs, group the anagrams together. You can return the a
2022-02-21
41-缺失的第一个正数 41-缺失的第一个正数
LeetCode 41. First Missing PositiveLeetCode-41 Given an unsorted integer array nums, return the smallest missing positiv
2022-02-21
33/153-搜索旋转排序数组 33/153-搜索旋转排序数组
LeetCode 33. Search in Rotated Sorted ArrayLeetCode-33 There is an integer array nums sorted in ascending order (with di
2022-02-21
32-最长有效括号 32-最长有效括号
LeetCode 32. Longest Valid ParenthesesLeetCode-32 Given a string containing just the characters ( and ), find the length
2022-02-21
31-下一个排列 31-下一个排列
LeetCode 31. Next PermutationA permutation of an array of integers is an arrangement of its members into a sequence or l
2022-02-21
28-实现strStr() 28-实现strStr()
LeetCode 28. Implement strStr()Return the index of the first occurrence of needle in haystack, or -1 if needle is not pa
2022-02-21
22-括号生成 22-括号生成
LeetCode 22. Generate ParenthesesLeetCode-22 Given n pairs of parentheses, write a function to generate all combinations
2022-02-21
19-删除链表倒数第N个节点 19-删除链表倒数第N个节点
LeetCode 19. Remove Nth Node From End of ListGiven the head of a linked list, remove the n^th^ node from the end of the
2022-02-21
10-正则表达式匹配 10-正则表达式匹配
LeetCode 10. Regular Expression MatchingLeetCode-10 Given an input string s and a pattern p, implement regular expressio
2022-02-21
5/516-最长回文子串/子序列 5/516-最长回文子串/子序列
LeetCode 5. Longest Palindromic SubstringLeetCode-5 Given a string s, return the longest palindromic substring in s. Exa
2022-02-21
3-无重复字符的最长子串 3-无重复字符的最长子串
LeetCode 3. Longest Substring Without Repeating CharactersLeetCode-3 Given a string s, find the length of the longest su
2022-02-21
19.1-控制内存分配 19.1-控制内存分配
19.1.1 重载new和deletestring *sp = new string("a value"); string *arr = new string[10]; 一条new表达式,实际执行了三步操作 new表达式调用一个名为ope
2022-01-20
17 / 43