摘要: Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space fo 阅读全文
posted @ 2017-07-01 17:17 王大咩的图书馆 阅读(230) 评论(0) 推荐(0) 编辑
摘要: Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, 阅读全文
posted @ 2017-07-01 16:36 王大咩的图书馆 阅读(411) 评论(0) 推荐(0) 编辑
摘要: Given a collection of intervals, merge all overlapping intervals. For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18]. 题意:给定一系列区间,合 阅读全文
posted @ 2017-07-01 11:19 王大咩的图书馆 阅读(280) 评论(0) 推荐(0) 编辑
摘要: Given an integer n, generate a square matrix filled with elements from 1 to n 2 in spiral order. For example,Given n =3, You should return the followi 阅读全文
posted @ 2017-07-01 10:29 王大咩的图书馆 阅读(230) 评论(0) 推荐(1) 编辑
摘要: 本文来自实验楼相关部分的文档和实验操作过程。 一、MySQL简介 MySQL是一种关系数据库管理系统,关系数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,提高了速度并提高了灵活性。MySQL所使用的SQL语言是用于访问数据库的最常用标准化语言,由于其体积小、速度快、总体拥有成本低,尤 阅读全文
posted @ 2017-07-01 00:35 王大咩的图书馆 阅读(428) 评论(0) 推荐(0) 编辑