Skip to content

Commit 56e87b9

Browse files
committed
update string
1 parent 3595abe commit 56e87b9

14 files changed

+95
-61
lines changed

db/codeforces.sqlite

28 KB
Binary file not shown.

db/leetcode.sqlite

400 KB
Binary file not shown.

images/codeforces.svg

Lines changed: 1 addition & 1 deletion
Loading

images/leetcode_binary_search.svg

Lines changed: 1 addition & 1 deletion
Loading

images/leetcode_dp.svg

Lines changed: 5 additions & 1 deletion
Loading

images/leetcode_geometry.svg

Lines changed: 1 addition & 1 deletion
Loading

images/leetcode_heap_stack_queue.svg

Lines changed: 1 addition & 1 deletion
Loading

images/leetcode_linked_list.svg

Lines changed: 1 addition & 1 deletion
Loading

images/leetcode_mini.svg

Lines changed: 1 addition & 1 deletion
Loading

images/leetcode_tree.svg

Lines changed: 1 addition & 1 deletion
Loading

images/leetcode_union_find.svg

Lines changed: 1 addition & 1 deletion
Loading

map/leetcode/leetcode-string.txt

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
1-
[Leetcode-字符串]
2-
3-
[-字串]
4-
392
5-
6-
[-简单题]
7-
521 541 551 557 606 657 680
8-
696 709 788 804 819 824 859 893 917 925 929 937 1071 1108 1189 1221 1309 1332 1370
9-
1374 1408 1417 1422 1436 1446 1455 1496 1507 1544 1556 1576 1592 1614 1624 1662 1668 1678
10-
1684 1694 1704 1736 1763 1768 1773 1790 1796 1805 1812 1816 1832 1844 1859 1876 1880 1897
11-
1903 1935 1941 1945 5701 5713
12-
13-
[-中等题]
14-
3 5 6 8 12 17 22 43 49 71 91 93 151 165 227 316 385 443 468 522 537 539 553 556 583 609 647
15-
678 686 722 767 791 809 816 831 833 842 848 856 890 916 966 1003 1016 1023 1081 1138 1156
16-
1169 1170 1177 1233 1234 1247 1249 1268 1297 1311 1324 1328 1347 1358 1371 1404 1410 1419
17-
1432 1433 1451 1452 1456 1461 1487 1513 1525 1529 1540 1541 1545 1573 1604 1616 1638 1653
18-
1737 1759 1781 1807 1813 1839 1849 1850 1904 1910 1915 1946 5714
19-
20-
[-复杂题]
21-
68 72 76 87 97 115 126 214 273 336 564 591 632 730 736 761 770 899 936
22-
1096 1106 1163 1316 1392 1449 1531 1542 1585 1745 1830 1948
23-
24-
[-字符串与哈希]
25-
30
26-
27-
[-字符串与数字]
28-
415(key=字符串相加)
29-
65(key=带e字符串转浮点数)
30-
31-
[-字符串匹配]
32-
28(key=实现strStr函数)
33-
44(key=通配符匹配)
34-
35-
[-模拟题]
36-
13 14 38 58 67 383 387 434 520
37-
38-
[-括号匹配]
39-
20(key=有效括号) 32(key=最长匹配)
40-
41-
[-正则表达式]
42-
10
43-
44-
[-子串问题]
45-
459
46-
47-
[-反转]
48-
344 345
49-
50-
[-回文]
51-
125 336(key=回文)
52-
1+
[Leetcode-字符串]
2+
3+
[-字串]
4+
392
5+
6+
[-简单题]
7+
551 557 606 657 680
8+
696 709 788 804 819 824 859 893 917 925 929 937 1071 1108 1189 1221 1309 1332 1370
9+
1374 1408 1417 1422 1436 1446 1455 1496 1507 1544 1556 1576 1592 1614 1624 1662 1668 1678
10+
1684 1694 1704 1736 1763 1768 1773 1790 1796 1805 1812 1816 1832 1844 1859 1876 1880 1897
11+
1903 1935 1941 1945 5701 5713
12+
13+
[-中等题]
14+
3 5 6 8 12 17 22 43 49 71 91 93 151 165 227 316 385 443 468 522 537 539 553 556 583 609 647
15+
678 686 722 767 791 809 816 831 833 842 848 856 890 916 966 1003 1016 1023 1081 1138 1156
16+
1169 1170 1177 1233 1234 1247 1249 1268 1297 1311 1324 1328 1347 1358 1371 1404 1410 1419
17+
1432 1433 1451 1452 1456 1461 1487 1513 1525 1529 1540 1541 1545 1573 1604 1616 1638 1653
18+
1737 1759 1781 1807 1813 1839 1849 1850 1904 1910 1915 1946 5714
19+
20+
[-复杂题]
21+
68 72 76 87 97 115 126 214 273 336 564 591 632 730 736 761 770 899 936
22+
1096 1106 1163 1316 1392 1449 1531 1542 1585 1745 1830 1948
23+
24+
[-字符串与哈希]
25+
30
26+
27+
[-字符串与数字]
28+
415(key=字符串相加)
29+
65(key=带e字符串转浮点数)
30+
31+
[-字符串匹配]
32+
28(key=实现strStr函数)
33+
44(key=通配符匹配)
34+
35+
[-模拟题]
36+
13 14 38 58 67 383 387 434 520
37+
38+
[-括号匹配]
39+
20(key=有效括号) 32(key=最长匹配)
40+
41+
[-正则表达式]
42+
10
43+
44+
[-子串问题]
45+
459
46+
47+
[-反转]
48+
344 345
49+
50+
[-回文]
51+
125 336(key=回文)
52+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* @lc app=leetcode.cn id=541 lang=cpp
3+
*
4+
* [541] 反转字符串 II
5+
*/
6+
7+
// @lc code=start
8+
class Solution {
9+
public:
10+
string reverseStr(string s, int k) {
11+
12+
}
13+
};
14+
// @lc code=end
15+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* @lc app=leetcode.cn id=551 lang=cpp
3+
*
4+
* [551] 学生出勤记录 I
5+
*/
6+
7+
// @lc code=start
8+
class Solution {
9+
public:
10+
bool checkRecord(string s) {
11+
12+
}
13+
};
14+
// @lc code=end
15+

0 commit comments

Comments
 (0)