长风破浪会有时,直挂云帆济沧海

Dream Word

博客园 首页 新随笔 联系 订阅 管理

2018年3月8日 #

摘要: 1:Determine if all characters of a string are unique bool isUnique(string input) { bitset<256> hashMap; for(int i = 0; i < input.length(); i++) { if(h 阅读全文
posted @ 2018-03-08 22:47 长风II 阅读(141) 评论(0) 推荐(0) 编辑