序 人生有一个道理,过了就不那么清醒了,因为左倾或者右倾都是很难解脱的。 佛家的观点就是一个很轻松,自在,不入局的观点,做得非常好,所谓实修实证。 要做得非常好,这里有个过程,我们都需要经历和反思、顿悟。 “以解决技术难题为乐,对程序完美有偏执追求; 具有团队精神、认同公司理念,有想法,敢...
分类:
其他好文 时间:
2015-03-19 23:50:11
阅读次数:
180
这题是暴力加贪心,算是一道水题吧!只要把l和w从小到大排个序就行了。。。#include"iostream"#include"stdio.h"#include"string.h"#include"cmath"#include"algorithm"#include"queue"#define mx 1...
分类:
其他好文 时间:
2015-03-19 23:47:50
阅读次数:
117
什么是同步和异步 I/O ?同步I/O,操作的发起者必须等到接收者处理完I/O异步I/O,操作的发起者无须等到接收者处理完I/O阻塞I/O,操作的接收者必须等到发送者发送I/O非阻塞I/O,操作的接收者无须等到发送者发送I/O注:在下文中,会成对使用 同步/阻塞(Blocking),异步/非阻塞(N...
分类:
其他好文 时间:
2015-03-19 23:50:25
阅读次数:
121
--数据检索--语法:--select 字段列表/* from 表列表 where 条件----查询所有学员信息select * from student--带条件的查询select * from Student where Sex='女'select * from Student where Se...
分类:
其他好文 时间:
2015-03-19 23:48:25
阅读次数:
148
在机器学习-李航-统计学习方法学习笔记之感知机(1)中我们已经知道感知机的建模和其几何意义。相关推导也做了明确的推导。有了数学建模。我们要对模型进行计算。 感知机学习的目的是求的是一个能将正实例和负实例完全分开的分离超平面。也就是去求感知机模型中的参数w和b.学习策略也就是求解途径就是定义...
分类:
其他好文 时间:
2015-03-19 23:47:25
阅读次数:
1014
In this DocumentPurposeQuestions and AnswersWhat kind of statistics do the Automated tasks collectHow do I revert to a previous set of statistics?Does...
分类:
其他好文 时间:
2015-03-19 23:49:32
阅读次数:
254
最近做一个APP ,因为在慕课网上学习到了新的方法来做Tab(APP主界面)效果,所以刚学不久久用起来了用的Fragment实现Tab方法查询了一下午的安卓资料,关于这个东西是在安卓3.0以后的版本出来的,为了方便的控制主界面,使代码更加容易完成和更容易后期维护怎么说,fragment就是一个子ac...
分类:
其他好文 时间:
2015-03-19 23:46:36
阅读次数:
207
2756: [SCOI2012]奇怪的游戏Time Limit: 40 SecMemory Limit: 128 MBSubmit: 1594Solved: 396[Submit][Status][Discuss]DescriptionBlinker最近喜欢上一个奇怪的游戏。 这个游戏在一个 N*M...
分类:
其他好文 时间:
2015-03-19 23:46:14
阅读次数:
216
private readonly static List propertylist = new List() { #region FlightProductGroupList new XmlSerializerModel{ XmlArrayAttributeName="FlightProduct.....
分类:
其他好文 时间:
2015-03-19 23:46:53
阅读次数:
225
好牛b的思路题意:一系列物品,用二辆车运送,求运送完所需的最小次数,两辆车必须一起走解法为状态压缩DP+背包,本题的解题思路是先枚举选择若干个时的状态,总状态量为1 2 #include 3 #include 4 #include 5 #include 6 using namespace std; ...
分类:
其他好文 时间:
2015-03-19 23:48:11
阅读次数:
218
--临时表:只能在当前会话中使用。如果当前会话关闭了,那么临时表就生动消失--select * into newclasses from classes --生成一张新表,将classes表中的数据复制到一个新表中存储--truncate table classes --删除原始物理表的数据,重置标...
分类:
其他好文 时间:
2015-03-19 23:46:28
阅读次数:
142
1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)...
分类:
其他好文 时间:
2015-03-19 23:45:39
阅读次数:
182
转载请注明出处:http://www.cnblogs.com/fraud/ ——by fraud动态树入门题,不需要维护任何信息。我用的是splay,下标实现的lct。 1 #include 2 #include 3 #include 4 #include 5 #include ...
分类:
其他好文 时间:
2015-03-19 23:47:18
阅读次数:
281
--创建自定义存储过程--语法:--if exists(select * from sysobjects where name='')-- drop proc ''--go--create proc[edure] usp_名称-- 相当于方法的():创建参数--as-- 相当于方法{}:方法体--g...
分类:
其他好文 时间:
2015-03-19 23:45:14
阅读次数:
189
Notes:1. When numerator is 0, return "0". Check this corner case, because 0 / -5 will return -0.2. Use long long int for divd and divs, mainly for div...
分类:
其他好文 时间:
2015-03-19 23:44:46
阅读次数:
162
--表连接Join--使用子查询select StudentNo,StudentName,(select classname from Classes where ClassId=Student.ClassId) from Student--使用from多表的方式select Student.Stu...
分类:
其他好文 时间:
2015-03-19 23:44:31
阅读次数:
217