码迷,mamicode.com
首页 > 其他好文 > 详细

Cracking the Coding Interview 1-1

时间:2014-08-31 06:03:40      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   for   div   log   

#include <iostream>
#include <string>
#include <algorithm>

using namespace std;

bool StringIsUnique(string s) {
  sort(s.begin(),s.end());
  for (auto p = s.begin(); p != s.end()-1;) {
    if (*p == *++p) return false;
  }
  return true;
}

int main(int argc, const char * argv[]) {
  
  string s = "akjnsdkjahrj";
  cout << StringIsUnique(s) << endl;
  string s2 = "qwertyuiop";
  cout << StringIsUnique(s2) << endl;
  return 0;
}

 

Cracking the Coding Interview 1-1

标签:style   blog   color   os   io   ar   for   div   log   

原文地址:http://www.cnblogs.com/vindicated/p/3947216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!