码迷,mamicode.com
首页 >  
搜索关键字:lint    ( 669个结果
java 抽象类和接口
java 抽象类和接口 Java 抽象类 在面向对象的概念中,所有的对象都是通过类来描绘的,但是反过来,并不是所有的类都是用来描绘对象的,如果一个类中没有包含足够的信息来描绘一个具体的对象,这样的类就是抽象类。 抽象类除了不能实例化对象之外,类的其它功能依然存在,成员变量、成员方法和构造方法的访问方 ...
分类:编程语言   时间:2017-05-21 18:57:40    阅读次数:175
【Lintcode】077.Longest Common Subsequence
题目: Given a sequence of integers, find the longest increasing subsequence (LIS). You code should return the length of the LIS. Given a sequence of int ...
分类:其他好文   时间:2017-05-20 21:13:26    阅读次数:132
YII2.0实现前后台分离登录
要实现前后台分离登录, 那我们先建立一个admin表,用来存放管理员数据,而会员仍然用原有的user表. 首先, 我们运行 yii migrate/create admin 创建一个migration 时间戳,用来编写创建Admin表: 继续运行下述命令行代码,即可生成admin表,由于只是做演示, ...
分类:其他好文   时间:2017-05-20 14:25:50    阅读次数:1532
[LintCode] 599 Insert into a Cyclic Sorted List 解题报告
DescriptionGiven a node from a cyclic linked list which has been sorted, write a function to insert a value into the list such that it remains a cycli ...
分类:其他好文   时间:2017-05-19 10:08:28    阅读次数:216
Mysql 基础
数据库服务器操作: 登陆mysql服务器: mysql -uroot -pdamin -h IP地址 -- 连接指定IP地址的用户名为root 密码为admin的mysql服务器; net start MySQL 开启MySQL服务 net stop MySQL 关闭MySQL服务 Mysql 语句 ...
分类:数据库   时间:2017-05-18 16:49:40    阅读次数:285
数据库基础
1.数据库概述 数据库就是存储数据的仓库,其本质是一个文件系统,数据按照特定的格式将数据存储起来,用户可以对数据库中的数据进行增加,修改,删除及查询操作。 2.表数据 根据表字段所规定的数据类型,我们可以向其中填入一条条的数据,而表中的每条数据类似类的实例对象。表中的一行一行的信息我们称之为记录。 ...
分类:数据库   时间:2017-05-18 01:15:31    阅读次数:280
【Lintcode】136.Palindrome Partitioning
题目: Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. Exampl ...
分类:其他好文   时间:2017-05-17 22:09:47    阅读次数:228
【Lintcode】137.Clone Graph
题目: Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors. How we serialize an undirected graph: Nodes are la ...
分类:其他好文   时间:2017-05-15 23:42:03    阅读次数:364
dede_arctype栏目表主表详细介绍
dedecms二次开发目录点这个:dedecms二次开发教程目录 字段 类型 整理 属性 Null 默认 额外 id smallint(5) UNSIGNED 是 NULL 栏目ID reid smallint(5) UNSIGNED 是 0 上级栏目 topid smallint(5) UNSIG ...
分类:其他好文   时间:2017-05-15 13:09:23    阅读次数:223
【SQL Server学习笔记】事务、锁定、阻塞、死锁
http://blog.csdn.net/sqlserverdiscovery/article/details/7712068 ...
分类:数据库   时间:2017-05-14 22:21:44    阅读次数:274
669条   上一页 1 ... 44 45 46 47 48 ... 67 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!