博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LintCode: Unique Characters
阅读量:6295 次
发布时间:2019-06-22

本文共 457 字,大约阅读时间需要 1 分钟。

C++,

time: O(n^2)

space: O(0)

class Solution {public:    /**     * @param str: a string     * @return: a boolean     */    bool isUnique(string &str) {        // write your code here        for (int i=0; i

C++,

time: O(n)

space: O(n)

1 class Solution { 2 public: 3     /** 4      * @param str: a string 5      * @return: a boolean 6      */ 7     bool isUnique(string &str) { 8         // write your code here 9         string tmp;10         for (int i=0; i

 

转载地址:http://jtpta.baihongyu.com/

你可能感兴趣的文章
String 源码浅析(一)
查看>>
Spring Boot 最佳实践(三)模板引擎FreeMarker集成
查看>>
Fescar 发布 0.2.3 版本,支持 Redis 和 Apollo
查看>>
Google MapReduce到底解决什么问题?
查看>>
CCNP-6 OSPF试验2(BSCI)
查看>>
Excel 2013 全新的图表体验
查看>>
openstack 制作大于2TB根分区自动扩容的CENTOS镜像
查看>>
Unbuntu安装遭遇 vmware上的Easy install模式
查看>>
几个常用的ASP木马
查看>>
python分析postfix邮件日志的状态
查看>>
Mysql-5.6.x多实例配置
查看>>
psutil
查看>>
在git@osc上托管自己的代码
查看>>
机器学习算法:朴素贝叶斯
查看>>
小五思科技术学习笔记之扩展访问列表
查看>>
使用Python脚本检验文件系统数据完整性
查看>>
使用MDT部署Windows Server 2003 R2
查看>>
Redhat as5安装Mysql5.0.28
查看>>
通过TMG发布ActiveSync
查看>>
Web服务器的配置与管理(4) 配置访问权限和安全
查看>>