122. Best Time to Buy and Sell Stock IISay you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to f... ...
分类:
其他好文 时间:
2018-02-03 15:58:17
阅读次数:
195
比pt-slave-restart更安全的修复主从复制错误方法
分类:
数据库 时间:
2018-02-01 21:11:56
阅读次数:
203
笔记内容:playbook管理配置文件笔记日期:2018-01-3124.29/24.30playbook管理配置文件playbook管理配置文件上一篇文章中我们成功的通过playbook安装了nginx,而生产环境中大多时候是需要管理配置文件的,例如修改配置文件然后进行重启服务,修改配置文件时可能会出现误修改的情况,所以我们还需要准备一个回滚的操作。至于安装软件包只是在初始化环境的时候用一下。下
分类:
其他好文 时间:
2018-01-31 20:22:40
阅读次数:
145
给定一个排序链表,删除所有重复的元素每个元素只留下一个。 样例 给出 1->1->2->null,返回 1->2->null 给出 1->1->2->3->3->null,返回 1->2->3->null /** * Definition of ListNode * class ListNode { ...
分类:
编程语言 时间:
2018-01-28 11:23:57
阅读次数:
114
跟进“删除重复数字”: 如果可以允许出现两次重复将如何处理? 从后处理 ...
分类:
编程语言 时间:
2018-01-28 11:18:22
阅读次数:
171
public ListNode deleteDuplication(ListNode pHead) { if(pHead==null){ return null; } ListNode preNode = null; ListNode curNode = pHead; w... ...
分类:
其他好文 时间:
2018-01-21 17:33:35
阅读次数:
144
Write a SQL query to delete all duplicate email entries in a table named Person, keeping only unique emails based on its smallest Id. For example, aft ...
分类:
其他好文 时间:
2018-01-20 18:57:22
阅读次数:
172
Given a list of directory info including directory path, and all the files with contents in this directory, you need to find out all the groups of dup ...
分类:
其他好文 时间:
2018-01-17 13:40:45
阅读次数:
210
个人作业 期末总结 ============== Part1: 阅读作业 在这一部分,首先我将说说我对这次阅读作业中每篇文章的理解,最后结合这次团队项目的经理谈谈自己对软件开发的看法。 1. No Silver Bullet 文章链接: "No Silver Bullet" 这篇文章我感触最深的还是 ...
分类:
其他好文 时间:
2018-01-14 13:49:30
阅读次数:
246