码迷,mamicode.com
首页 >  
搜索关键字:implement strstr    ( 2381个结果
python刷LeetCode:28. 实现 strStr()
难度等级:简单 题目描述: 实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 示例 1: 输入: haystack = "hello", ...
分类:编程语言   时间:2020-02-28 00:57:01    阅读次数:64
31. Next Permutation
1.题目描述 英文版: Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers. If such arrangement i ...
分类:其他好文   时间:2020-02-19 00:57:15    阅读次数:70
LeetCode 208. Implement Trie (Prefix Tree)
"题目" 题意:实现一个前缀树 ...
分类:其他好文   时间:2020-02-14 10:53:54    阅读次数:54
LeetCode 1188. Design Bounded Blocking Queue
原题链接在这里:https://leetcode.com/problems/design-bounded-blocking-queue/ 题目: Implement a thread safe bounded blocking queue that has the following methods ...
分类:其他好文   时间:2020-02-13 09:51:44    阅读次数:70
Java中类的关系
在java里类的关系大致分为三种, 1.继承(a is b):继承extends,实现implement 2.包含(a has b):组合>聚合>关联。关系亲密度越来越小,一个类在另一个类中声明为属性。 3.依赖(a use b):一个类中用到了别的类对象,比如a类的方法中创建b的对象并使用其属性跟 ...
分类:编程语言   时间:2020-02-11 14:21:46    阅读次数:72
LeetCode 677. Map Sum Pairs 键值映射(C++/Java)
题目: Implement a MapSum class with insert, and sum methods. For the method insert, you'll be given a pair of (string, integer). The string represents t ...
分类:编程语言   时间:2020-02-11 00:19:01    阅读次数:110
[LC] 146. LRU Cache
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and put. get(key) - Get the ...
分类:系统相关   时间:2020-02-10 09:57:46    阅读次数:68
【leetcode】1348. Tweet Counts Per Frequency
题目如下: Implement the class TweetCounts that supports two methods: 1. recordTweet(string tweetName, int time) Stores the tweetName at the recorded time  ...
分类:其他好文   时间:2020-02-09 18:10:45    阅读次数:50
6-15 Iterative Mergesort (25分)
How would you implement mergesort without using recursion? The idea of iterative mergesort is to start from N sorted sublists of length 1, and each ti ...
分类:其他好文   时间:2020-02-03 13:35:41    阅读次数:117
LeetCode 225题用队列实现栈(Implement Stack using Queues) Java语言求解
链接 https://leetcode-cn.com/problems/implement-stack-using-queues/ 思路 首先演示push()操作;将元素依次进入队1,进入时用top元素保存当前进入的元素;如下图: push操作的演示 然后演示pop()操作;先将除队1中的最后一个元 ...
分类:编程语言   时间:2020-02-03 09:39:08    阅读次数:74
2381条   上一页 1 ... 11 12 13 14 15 ... 239 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!