ATP-EMTP v11.4 1CD BETA CAE Systems v15.3.0 Win64 & Linux64 2DVD Intelligent Light FieldView v15 Win64 & Linux64 2CD JewelCAD.Pro.v2.2.3 1CD Mathworks ...
分类:
其他好文 时间:
2017-11-10 16:52:15
阅读次数:
371
Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes), write a function to check whether these edges mak ...
分类:
其他好文 时间:
2017-11-10 13:54:12
阅读次数:
198
题目大意:判断一个链表是否含有环,如果有环则输出距离链表头最近的环上结点(即从链表头出发进入环的入口)。 有趣的题目,一般判断链表是否有环可以同时使用两个轨迹结点遍历整个链表,且轨迹结点速度不同,快者q每次循环移动两步,慢者s每次循环移动一步。这样如果有环,那么快者必定会在环上追赶上慢者(由于二者相 ...
分类:
其他好文 时间:
2017-11-08 22:23:55
阅读次数:
87
How can you reverse the effects of an ALTER DISKGROUP ... DROP DISK command if it hasalready completed?A. Issue the ALTER DISKGROUP ... ADD DISK comma ...
分类:
其他好文 时间:
2017-11-08 14:59:16
阅读次数:
169
题目要求 Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull. Follow up: Can you solve it without using extra sp ...
分类:
其他好文 时间:
2017-11-07 01:22:39
阅读次数:
183
团队项目-初步构想 Recycle:一个以回收与二手市场为主题的APP 主要分为四个部分:首页、回收车、消息、我的 首页:分为三大功能部分,垃圾分类、二手和市场 垃圾分类:分为纸质品、塑料、金属、玻璃、电器等 二手:用户与用户之间直接交易 市场:用户与负责厂商交易 回收车:类似于淘宝购物车,功能相似 ...
分类:
其他好文 时间:
2017-11-06 19:14:57
阅读次数:
155
MySQL数据库的性能的影响分析及其优化 MySQL数据库的性能的影响 一. 服务器的硬件的限制 二. 服务器所使用的操作系统 三. 服务器的所配置的参数设置不同 四. 数据库存储引擎的选择 五. 数据库的参数配置的不同 六. (重点)数据库的结构的设计和SQL语句 1). 服务器的配置和设置(cp ...
分类:
数据库 时间:
2017-11-06 19:10:16
阅读次数:
159
题目链接:https://leetcode.com/problems/linked-list-cycle-ii/description/ 题目大意:141题目的扩展,给出单链表,判断是否有环,如果有环,找出环的开始的结点,如果没有环,返回null。 法一(借鉴):在已经找出单链表环的基础上再找开始结 ...
分类:
其他好文 时间:
2017-11-06 13:53:29
阅读次数:
126
最近遇到一个奇怪的问题 收到短信报警说磁盘IO很高 复制延迟 iostat -x 1 10 信息如下: QPS 如下: 负载很低 压力很低 这就很无解了。 只有一个MYSQL 其实这是个硬件问题 ,就是 MegaSAS RAID卡 BBU Learn Cycle周期 背景 最近遇到有些带MegaSA ...
分类:
数据库 时间:
2017-11-03 21:59:35
阅读次数:
276
Given a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space? 思路:快慢指针,设置一个走两步的快指针,和一个走一步的慢指针,如果有环,则它们一 ...
分类:
其他好文 时间:
2017-11-01 14:59:50
阅读次数:
176