Skip to content

Commit 231120a

Browse files
committed
Modify source code path
1 parent c925620 commit 231120a

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

algorithms/README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@
22

33
| No. | Title | Go | Difficulty |
44
|-----| ----- | -- | ---------- |
5-
|0001|[两数之和](https://leetcode-cn.com/problems/two-sum/)|[go](./array/1.twoSum.go)|S|
5+
|0001|[两数之和](https://leetcode-cn.com/problems/two-sum/)|[go](./myarray/1.twoSum.go)|S|
66
|0002|[两数相加](https://leetcode-cn.com/problems/add-two-numbers/)|[go](./linkedList/2.addTwoNumbers.go)|M|
7-
|0003|[无重复字符的最长子串](https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/)|[go](./string/3.lengthOfLongestSubstring.go)|M|
8-
|0005|[最长回文子串](https://leetcode-cn.com/problems/longest-palindromic-substring/)|[go](./string/5.longestPalindrome.go)|M|
9-
|0007|[整数反转](https://leetcode-cn.com/problems/reverse-integer/)|[go](./string/7.reverse.go)|S|
10-
|0008|[字符串转换整数 (atoi)](https://leetcode-cn.com/problems/string-to-integer-atoi/)|[go](./string/8.myAtoi.go)|M|
11-
|0011|[盛最多水的容器](https://leetcode-cn.com/problems/container-with-most-water/submissions/)|[go](./array/11.maxArea.go)|M|
12-
|0014|[最长公共前缀](https://leetcode-cn.com/problems/longest-common-prefix/)|[go](./string/14.longestCommonPrefix.go)|S|
13-
|0015|[三数之和](https://leetcode-cn.com/problems/3sum/submissions/)|[go](./array/15.threeSum.go)|M|
7+
|0003|[无重复字符的最长子串](https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/)|[go](./mystring/3.lengthOfLongestSubstring.go)|M|
8+
|0005|[最长回文子串](https://leetcode-cn.com/problems/longest-palindromic-substring/)|[go](./mystring/5.longestPalindrome.go)|M|
9+
|0007|[整数反转](https://leetcode-cn.com/problems/reverse-integer/)|[go](./mystring/7.reverse.go)|S|
10+
|0008|[字符串转换整数 (atoi)](https://leetcode-cn.com/problems/string-to-integer-atoi/)|[go](./mystring/8.myAtoi.go)|M|
11+
|0011|[盛最多水的容器](https://leetcode-cn.com/problems/container-with-most-water/submissions/)|[go](./myarray/11.maxArea.go)|M|
12+
|0014|[最长公共前缀](https://leetcode-cn.com/problems/longest-common-prefix/)|[go](./mystring/14.longestCommonPrefix.go)|S|
13+
|0015|[三数之和](https://leetcode-cn.com/problems/3sum/submissions/)|[go](./myarray/15.threeSum.go)|M|
1414
|0019|[删除链表的倒数第N个节点](https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/)|[go](./linkedList/19.removeNthFromEnd.go)|M|
15-
|0020|[有效的括号](https://leetcode-cn.com/problems/valid-parentheses/)|[go](./string/20.isValid.go)|S|
15+
|0020|[有效的括号](https://leetcode-cn.com/problems/valid-parentheses/)|[go](./mystring/20.isValid.go)|S|
1616
|0021|[合并两个有序链表](https://leetcode-cn.com/problems/merge-two-sorted-lists/submissions/)|[go](./linkedList/21.mergeTwoSortedLists.go)|S|
1717
|0022|[括号生成](https://leetcode-cn.com/problems/generate-parentheses/)|[go](./tree/22.generateParenthesis.go)|M|
18-
|0026|[删除排序数组中的重复项](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array/)|[go](./array/26.removeDuplicates.go)|S|
19-
|0032|[最长有效括号](https://leetcode-cn.com/problems/longest-valid-parentheses/)|[go](./string/32.longestValidParentheses.go)|H|
20-
|0033|[搜索旋转排序数组](https://leetcode-cn.com/problems/search-in-rotated-sorted-array/submissions/)|[go](./array/33.search.go)|M|
21-
|0034|[在排序数组中查找元素的第一个和最后一个位置](https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/)|[go](./array/34.searchRange.go)|M|
22-
|0053|[最大子序和](https://leetcode-cn.com/problems/maximum-subarray/)|[go](./array/53.maxSubArray.go)|S|
18+
|0026|[删除排序数组中的重复项](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array/)|[go](./myarray/26.removeDuplicates.go)|S|
19+
|0032|[最长有效括号](https://leetcode-cn.com/problems/longest-valid-parentheses/)|[go](./mystring/32.longestValidParentheses.go)|H|
20+
|0033|[搜索旋转排序数组](https://leetcode-cn.com/problems/search-in-rotated-sorted-array/submissions/)|[go](./myarray/33.search.go)|M|
21+
|0034|[在排序数组中查找元素的第一个和最后一个位置](https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/)|[go](./myarray/34.searchRange.go)|M|
22+
|0053|[最大子序和](https://leetcode-cn.com/problems/maximum-subarray/)|[go](./myarray/53.maxSubArray.go)|S|
2323
|0069|[x 的平方根](https://leetcode-cn.com/problems/sqrtx/)|[go](./binarysearch/69.mySqrt.go)|S|
24-
|0071|[简化路径](https://leetcode-cn.com/problems/simplify-path/)|[go](./string/71.simplifyPath.go)|M|
25-
|0078|[子集](https://leetcode-cn.com/problems/subsets/)|[go](./array/78.subsets.go)|M|
26-
|0093|[复原IP地址](https://leetcode-cn.com/problems/restore-ip-addresses/submissions/)|[go](./string/93.restoreIpAddresses.go)|M|
24+
|0071|[简化路径](https://leetcode-cn.com/problems/simplify-path/)|[go](./mystring/71.simplifyPath.go)|M|
25+
|0078|[子集](https://leetcode-cn.com/problems/subsets/)|[go](./myarray/78.subsets.go)|M|
26+
|0093|[复原IP地址](https://leetcode-cn.com/problems/restore-ip-addresses/submissions/)|[go](./mystring/93.restoreIpAddresses.go)|M|
2727
|0094|[二叉树的中序遍历](https://leetcode-cn.com/problems/binary-tree-inorder-traversal/)|[go](./tree/94.inorderTraversal.go)|M|
2828
|0101|[对称二叉树](https://leetcode-cn.com/problems/symmetric-tree/submissions/)|[go](./tree/101.isSymmetric.go)|S|
2929
|0102|[二叉树的层次遍历](https://leetcode-cn.com/problems/binary-tree-level-order-traversal/submissions/)|[go](./tree/102.levelOrder.go)|M|
3030
|0104|[二叉树的最大深度](https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/)|[go](./tree/104.maxDepth.go)|S|
31-
|0118|[杨辉三角](https://leetcode-cn.com/problems/pascals-triangle/)|[go](./array/118.generate.go)|S|
32-
|0121|[买卖股票的最佳时机](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/)|[go](./array/121.maxProfit.go)|S|
31+
|0118|[杨辉三角](https://leetcode-cn.com/problems/pascals-triangle/)|[go](./myarray/118.generate.go)|S|
32+
|0121|[买卖股票的最佳时机](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/)|[go](./myarray/121.maxProfit.go)|S|
3333
|0136|[只出现一次的数字](https://leetcode-cn.com/problems/single-number/comments/)|[go](./bit/136.singleNumber.go)|S|
3434
|0141|[环形链表](https://leetcode-cn.com/problems/linked-list-cycle/)|[go](./linkedList/141.hasCycle.go)|S|
3535
|0144|[二叉树的前序遍历](https://leetcode-cn.com/problems/binary-tree-preorder-traversal/)|[go](./tree/144.preorderTraversal.go)|M|
@@ -46,16 +46,16 @@
4646
|0232|[用栈实现队列](https://leetcode-cn.com/problems/implement-queue-using-stacks/)|[go](./mystack/232.myQueue.go)|S|
4747
|0234|[回文链表](https://leetcode-cn.com/problems/palindrome-linked-list/solution/)|[go](./linkedList/234.isPalindrome.go)|S|
4848
|0237|[删除链表中的节点](https://leetcode-cn.com/problems/delete-node-in-a-linked-list/)|[go](./linkedList/237.deleteNode.go)|S|
49-
|0287|[寻找重复数](https://leetcode-cn.com/problems/find-the-duplicate-number/)|[go](./array/287.findDuplicate.go)|M|
50-
|0344|[反转字符串](https://leetcode-cn.com/problems/reverse-string/)|[go](./string/344.reverseString.go)|S|
49+
|0287|[寻找重复数](https://leetcode-cn.com/problems/find-the-duplicate-number/)|[go](./myarray/287.findDuplicate.go)|M|
50+
|0344|[反转字符串](https://leetcode-cn.com/problems/reverse-string/)|[go](./mystring/344.reverseString.go)|S|
5151
|0347|[前 K 个高频元素](https://leetcode-cn.com/problems/top-k-frequent-elements/)|[go](./myheap/347.topkFrequent.go)|M|
52-
|0442|[数组中重复的数据](https://leetcode-cn.com/problems/find-all-duplicates-in-an-array/)|[go](./array/442.findDuplicates.go)|M|
53-
|0468|[验证IP地址](https://leetcode-cn.com/problems/validate-ip-address/submissions/)|[go](./string/468.validIPAddress.go)|M|
54-
|0509|[斐波那契数](https://leetcode-cn.com/problems/fibonacci-number/)|[go](./array/509.fibnacci.go)|S|
52+
|0442|[数组中重复的数据](https://leetcode-cn.com/problems/find-all-duplicates-in-an-array/)|[go](./myarray/442.findDuplicates.go)|M|
53+
|0468|[验证IP地址](https://leetcode-cn.com/problems/validate-ip-address/submissions/)|[go](./mystring/468.validIPAddress.go)|M|
54+
|0509|[斐波那契数](https://leetcode-cn.com/problems/fibonacci-number/)|[go](./myarray/509.fibnacci.go)|S|
5555
|0617|[合并二叉树](https://leetcode-cn.com/problems/merge-two-binary-trees/)|[go](./tree/617.mergeTrees.go)|S|
5656
|0622|[设计循环队列](https://leetcode-cn.com/problems/design-circular-queue/)|[go](./myqueue/622.MyCircularQueue.go)|M|
5757
|0641|[设计循环双端队列](https://leetcode-cn.com/problems/design-circular-deque/)|[go](./myqueue/641.MyCircularDequeBasedOnDLinkedList.go)|M|
5858
|0933|[最近的请求次数](https://leetcode-cn.com/problems/number-of-recent-calls/)|[go](./myqueue/933.RecentCounter.go)|S|
5959
|1021|[删除最外层的括号](https://leetcode-cn.com/problems/remove-outermost-parentheses/)|[go](./mystack/1021.removeOuterParentheses.go)|S|
60-
|1108|[地址无效化](https://leetcode-cn.com/problems/defanging-an-ip-address/)|[go](./string/1108.defangIPaddr.go)|S|
61-
|1213|[三个有序数组的交集](https://leetcode-cn.com/problems/intersection-of-three-sorted-arrays/)|[go](./array/1213.arraysIntersection.go)|S|
60+
|1108|[地址无效化](https://leetcode-cn.com/problems/defanging-an-ip-address/)|[go](./mystring/1108.defangIPaddr.go)|S|
61+
|1213|[三个有序数组的交集](https://leetcode-cn.com/problems/intersection-of-three-sorted-arrays/)|[go](./myarray/1213.arraysIntersection.go)|S|

0 commit comments

Comments
 (0)