这道Amazon面试题什么意思?# JobHunting - 待字闺中S*C2015-04-03 07:041 楼给我toUpper函数,让实现toLower函数。基本上就是事先通过toupper得到所有小转大的pair,然后存哈希。
b*n2015-04-03 07:043 楼我估计就是1) 用toUpper(string s), so that u get a hashMapwhose key is the Uppercase letter, and the value is the lower case letter (kinda like an inverted index...)2) and use the hashmap to implement toLower【在 S*******C 的大作中提到】: 给我toUpper函数,让实现toLower函数。基本上就是事先通过toupper得到所有小转大: 的pair,然后存哈希。
d*e2015-04-03 07:044 楼return x - upper a + a简单数学性质【在 S*******C 的大作中提到】: 给我toUpper函数,让实现toLower函数。基本上就是事先通过toupper得到所有小转大: 的pair,然后存哈希。
l*u2015-04-03 07:045 楼本懒蛋记ascii table方法 :)A=65,a=97so, toLower(x)=toUpper(x)+(97-65) ? :)【在 S*******C 的大作中提到】: 给我toUpper函数,让实现toLower函数。基本上就是事先通过toupper得到所有小转大: 的pair,然后存哈希。