上一页 1 ··· 8 9 10 11 12 13 下一页
摘要: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. Example: 阅读全文
posted @ 2019-03-25 14:14 GoodRnne 阅读(206) 评论(0) 推荐(0) 编辑
摘要: Implement pow(x, n), which calculates x raised to the power n (x,n). Example 1: Input: 2.00000, 10 Output: 1024.00000 Example 2: Input: 2.10000, 3 Out 阅读全文
posted @ 2019-03-25 13:42 GoodRnne 阅读(324) 评论(0) 推荐(0) 编辑
摘要: Redis提供了主从复制功能,主要是为了保证服务的高可用性。在redis.conf配置文件中通过设置,可以开启主从复制功能。或者在客户端中使用slaveof 命令开启该功能。 Redis 同步的是指令流,主服务器会将那些对自己的状态产生改变的指令记录在本地的内存 缓存 中,然后异步将缓存中的指令同步 阅读全文
posted @ 2019-03-25 13:03 GoodRnne 阅读(137) 评论(0) 推荐(0) 编辑
摘要: The Fibonacci numbers, commonly denoted F(n) form a sequence, called the Fibonacci sequence, such that each number is the sum of the two preceding one 阅读全文
posted @ 2019-03-24 16:33 GoodRnne 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 在Redis中,事务是以multi/exec/discard进行的, 其中multi表示事务的开始, exec表示事务的执行,discard表示丢弃事务。 上面演示了一个完整的事务过程,所有的指令在 exec 之前不执行,而是缓存在服务器的一个事务队列中,服务器一旦收到 exec 指令,才开执行整个 阅读全文
posted @ 2019-03-24 15:55 GoodRnne 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Reverse a singly linked list. Example: Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL Follow up: A linked list can be reversed either iterativ 阅读全文
posted @ 2019-03-23 16:45 GoodRnne 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. In Pascal's triangle, each number is the sum of the two numbers 阅读全文
posted @ 2019-03-23 16:16 GoodRnne 阅读(111) 评论(0) 推荐(0) 编辑
摘要: Redis提供了为持久化提供了两种方法:第一种是快照:他可以将存在某一时刻的所有数据都写入硬盘里面。第二种是只追加文件(AOF):它会在执行命令时,将被执行的写命令复制到硬盘里面。 Redis支持持久化可以在redis.conf文件中配置,具体参数如下: 一、快照持久化:通过创建快照来获取存储的内存 阅读全文
posted @ 2019-03-23 15:26 GoodRnne 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Given a linked list, swap every two adjacent nodes and return its head. You may not modify the values in the list's nodes, only nodes itself may be ch 阅读全文
posted @ 2019-03-22 18:42 GoodRnne 阅读(652) 评论(0) 推荐(0) 编辑
摘要: Write a function that reverses a string. The input string is given as an array of characters char[].Do not allocate extra space for another array, you 阅读全文
posted @ 2019-03-22 17:01 GoodRnne 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页