Chapter 1 | Arrays and Strings
使用位图,o(n)
strrev,先移动指针到尾部,然后一个一个往回换。
位图。但要问清楚题意。
1.4 Write a method to decide if two strings are anagrams or not.
辅助数组。
1.5 Write a method to replace all spaces in a string with ‘%20’.
拷贝,映射,辅助数组
13-1,13-4,13-16,3*4=12次。原题解14次。
原解想法不错,直接开数组存需要做的动作。
原解想法不错,使用两倍长度的字符串来看是否是旋转字符串,用子串来判定。