自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 数据库学习笔记二

1、合并两个查询结果: select *  from lmm_lz union all select * from lmm_lz1;2、内链接: select lmm_lz.*,lmm_lz1.*  from lmm_lz inner join lmm_lz1 on lmm_lz.event=lmm_lz1.event;3、左连接:select lmm_lz.*,lmm_lz1.*

2017-03-19 16:10:25 350

原创 数据库学习笔记

1、建数据库:create database lmm_lz;2、 建表:create table lmm_lz(date datetime not null,event char not null,salary int not null);3、使用数据库:use lmm_lz(可以没有分号)4、进入lmm_lz数据库:mysql-D lmm_lz -u root -p;5、

2017-03-18 14:31:51 293

原创 粗糙集(Rough set) 理论

1.处理含糊和不确定性问题的新型数学工具。2.其主要思想是利用已知的知识库,将知识理解为对数据的划分,每一被划分的集合称为概念,将不确定或不精确的知识用已知的知识库中的知识来刻画. 该理论是建立在分类机制基础上的,它将分类理解为在特定空间上的等价关系,而等价关系构成了对该空间的划分. 3.粗糙集理论的特点在于它恰好反映了人们用粗糙集方法处理不分明问题的常规性,即以不完全信息或知识去处理一些

2016-09-29 19:34:27 4880 1

原创 敏捷软件开发学习笔记

敏捷开发宣言:       1.个体和交互   胜过    过程与工具       2.可以工作的软件    胜过     面面俱到的文档       3.客户合作       胜过     合同谈判       4.响应变化       胜过     遵循计划principle:        1.我们最优先要做的就是通过尽早的,持续的交付有价值的软件来使客户满意

2016-09-19 17:52:45 342

原创 167. Two Sum II - Input array is sorted

Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two number

2016-08-25 21:35:33 303

原创 LeetCode 260:Single number3

Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only once.For example:Given 

2016-08-25 21:28:45 229

原创 LeetCode P137:single number

Given an array of integers, every element appears three times except for one. Find that single one.Note:Your algorithm should have a linear runtime complexity. Could you implement it without u

2016-08-25 19:24:58 197

原创 Day1:leetcode136 && filter palindrome &&闭包及返回函数

136. Single Number Given an array of integers, every element appears twice except for one. Find that single one.Note:Your algorithm should have a linear runtime complexity. Could you imp

2016-08-24 19:21:22 309

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除