// main.m// 1-26课堂笔记//讲师: 小辉//笔者: 王学文// Created by lanouhn on 15/1/26.// Copyright (c) 2015年 lanouhn. All rights reserved.// 预编译( Precompile),#import ...
分类:
编程语言 时间:
2015-01-28 17:28:12
阅读次数:
242
Time Limit:1000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uDescriptionHiking in the mountains is seldom an easy task for most people, as it is ...
分类:
其他好文 时间:
2015-01-28 17:28:12
阅读次数:
173
1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 struct node 8 { 9 int x;10 int y;11 int s;12 };13 int g[1...
分类:
其他好文 时间:
2015-01-28 17:28:52
阅读次数:
237
原文:JS是按值传递还是按引用传递?最近遇到个有趣的问题:“JS中的值是按值传递,还是按引用传递呢?”
在分析这个问题之前,我们需了解什么是按值传递(call by value),什么是按引用传递(call by reference)。在计算机科学里,这个部分叫求值策略(Evaluation Str...
分类:
Web程序 时间:
2015-01-28 17:29:37
阅读次数:
145
原题地址基本DFS,对于每个元素,要么选,要么不选。记得先排序,因为结果集的数字要从小到大出现。代码: 1 vector > res; 2 3 void dfs(vector &S, vector ans, int pos) { 4 if (pos == S.size()) { 5 r...
分类:
其他好文 时间:
2015-01-28 17:26:58
阅读次数:
270
Unique Binary Search Trees IIGiven n, generate all structurally unique BST's (binary search trees) that store values 1...n.For example,Given n = 3, yo...
分类:
其他好文 时间:
2015-01-28 17:27:09
阅读次数:
121
.tips{position:relative;border:1px solid#aaa;}.tips:before{content: ""; position: absolute; border-style: solid; /* reduce the damage in FF3....
分类:
Web程序 时间:
2015-01-28 17:25:48
阅读次数:
169
在HR模块和System administrator模块下都能找到Woker user request这个功能,它的作用是为员工创建一个AX账号。比如我们创建一个这样的user request:注意user alias一栏的ted@contoso.com并不是员工的邮件地址,而是员工在windows...
分类:
其他好文 时间:
2015-01-28 17:28:06
阅读次数:
215
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 5 namespace Linq101 6 { 7 class Set 8 { 9 /// 1...
分类:
其他好文 时间:
2015-01-28 17:25:44
阅读次数:
203
/** * 获取菜单 * @param number $id * @return multitype: */ public function menu($id = 0) { $menu = M ( 'menu' ); $arrlist = array (); // 数组必须初始化,否p...
分类:
编程语言 时间:
2015-01-28 17:27:51
阅读次数:
143
2D和3D转换涉及到数学中的知识,作为一个数学专业的毕业生,不研究一下岂不是对不起自己的专业?首先来看几个参数:1、transform-origin:origin(起源,起点),也即变形的起点,在数学上可以理解为坐标原点。 其语法为:transform-origin:[ | | left | c.....
分类:
Web程序 时间:
2015-01-28 17:27:12
阅读次数:
1499
unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) ...
常见的字段类型选择1.字符类型建议采用varchar/nvarchar数据类型2.金额货币建议采用money数据类型3.科学计数建议采用numeric数据类型4.自增长标识建议采用bigint数据类型 (数据量一大,用int类型就装不下,那以后改造就麻烦了)5.时间类型建议采用为datetime数....
分类:
数据库 时间:
2015-01-28 17:27:19
阅读次数:
164
1 /** 2 * 系统弹出框 3 */ 4 sAlert: function(tit,str,conf){ 5 if(document.getElementById("bgDiv")!=null...
分类:
其他好文 时间:
2015-01-28 17:26:08
阅读次数:
121
注意:1)要引用响应的程序集,必须是41的 2)配置文件using Microsoft.Practices.EnterpriseLibrary.Common.Configuration;using Microsoft.Practices.EnterpriseLibrary.Common.Con...
分类:
其他好文 时间:
2015-01-28 17:26:36
阅读次数:
192
1.找到文件\Tornado2.2\target\config\comps\vxWorks\00bsp.cdf2.在930行添加 Parameter N_SIO_CHANNELS { NAME number of system serial ports TYPE uint DEFAULT ...
分类:
其他好文 时间:
2015-01-28 17:25:58
阅读次数:
242
需求:要在数据库保留 年月日 时分秒 的日期数据过程:在mysql中 date数据类型 只能存放年月日,所以只能用datetime类型,那在jdbc中,就要调用setTimestamp()方法,取出数据的时候,用结果集调用getTimstamp()方法。问题:虽然取出了日期对象Timestamp,但...
分类:
数据库 时间:
2015-01-28 17:24:58
阅读次数:
223