leetcode-3 无重复字符的最长字串(滑动窗口,unordered_set, st.find(string[i]))
Posted 哈拉泽空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-3 无重复字符的最长字串(滑动窗口,unordered_set, st.find(string[i]))相关的知识,希望对你有一定的参考价值。
(1)总结:掌握滑动窗口的思想(头部指针此题中用while),unordered_set, set.find(element)的使用方法。
(2)map和set是用红黑树实现的,中的find操作时间复杂度为O(logN)。
(3)STL中有unordered_map和unordered_set两种无序容器。使用时加上对应的头文件即可。
以上是关于leetcode-3 无重复字符的最长字串(滑动窗口,unordered_set, st.find(string[i]))的主要内容,如果未能解决你的问题,请参考以下文章