上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a conca 阅读全文
posted @ 2019-04-08 11:30 GoodRnne 阅读(172) 评论(0) 推荐(0) 编辑
摘要: RPC定义 RPC(Remote Procedure Call)全称远程过程调用,它指的是通过网络,我们可以实现客户端调用远程服务端的函数并得到返回结果。这个过程就像在本地电脑上运行该函数一样,只不过系统本身隐藏了发送的过程和细节。 待解决的问题 (1)既然是远程调用服务端的服务,这就意味着服务端必 阅读全文
posted @ 2019-04-07 16:07 GoodRnne 阅读(321) 评论(0) 推荐(0) 编辑
摘要: Given an array nums and a value val, remove all instances of that value in-place and return the new length.Do not allocate extra space for another arr 阅读全文
posted @ 2019-04-07 12:00 GoodRnne 阅读(200) 评论(0) 推荐(0) 编辑
摘要: Given two integers dividend and divisor, divide two integers without using multiplication, division and mod operator. Return the quotient after dividi 阅读全文
posted @ 2019-04-07 11:30 GoodRnne 阅读(206) 评论(0) 推荐(0) 编辑
摘要: Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. Example:Input: 第二种方法的解决代码 阅读全文
posted @ 2019-04-06 16:57 GoodRnne 阅读(800) 评论(0) 推荐(0) 编辑
摘要: 一、红黑树的定义: (1)根节点是黑色的, (2)所有叶子节点上不存储数据,并且颜色都为黑色。 (3)红色节点相邻的节点不能为红色。(红色节点邻居节点只能是黑色节点) (4)每一个节点,从该节点到达可达叶子节点的所有路径都包含了相同数量的黑色节点。 图示例子 红黑树的时间复杂度为O(log n)。由 阅读全文
posted @ 2019-04-06 12:41 GoodRnne 阅读(982) 评论(0) 推荐(0) 编辑
摘要: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is [ 阅读全文
posted @ 2019-04-06 10:42 GoodRnne 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Given a linked list, remove the n-th node from the end of list and return its head. Example: Given linked list: 1->2->3->4->5, and n = 2. After removi 阅读全文
posted @ 2019-04-04 11:05 GoodRnne 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b+ c + d = target? Find all unique qu 阅读全文
posted @ 2019-04-03 11:12 GoodRnne 阅读(259) 评论(0) 推荐(0) 编辑
摘要: Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the thr 阅读全文
posted @ 2019-04-03 10:47 GoodRnne 阅读(177) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页