function addTabA(title){ if ($('#tt').tabs('exists', title)){ $('#tt').tabs('select', title); } else { $('#tt').tabs('add',{ ...
分类:
Web程序 时间:
2014-10-27 17:05:28
阅读次数:
133
479D - Long Jumps, 480B - Long JumpsIt is easy to see that the answer is always 0, 1 or 2. If we can already measure both x and y, output 0. Then try ...
分类:
其他好文 时间:
2014-10-26 19:34:38
阅读次数:
147
DP、KMP什么的都太高大上了,自己想了个朴素的遍历方法。
【题目】
Given a string S,
find the longest palindromic substring in S.
You may assume that the maximum length of S is
1000, and there exists one unique longest palin...
分类:
其他好文 时间:
2014-10-26 15:37:32
阅读次数:
249
在ORACLE数据中修改会话级临时表时,有可能会遇到ORA-14550错误,那么为什么会话级全局临时表会报ORA-14450错误呢,如下所示,我们先从一个小小案例入手: 案例1: SQL> CREATE GLOBAL TEMPORARY TABLE TEMP_TEST 2 ( 3 NAME VARC...
分类:
数据库 时间:
2014-10-26 11:32:12
阅读次数:
474
由于工程实现上的某些小问题,为了达到方便实现如图效果,对数据结构做了一点点的调整。
新的数据结构如下图:
第一个图片的数据源视图:
IF EXISTS (SELECT * FROM sysobjects WHERE id = OBJECT_ID(N'RoleDataPermit') AND OBJECTPROPERTY(id, N'ISVIEW') = 1)
DROP VIE...
分类:
其他好文 时间:
2014-10-25 23:07:36
阅读次数:
392
1. Any 返回没有Product的Categoryvar expr = from c in context.Categories where !c.Products.Any() select c;SELECT [Extent1].[Categ...
分类:
数据库 时间:
2014-10-25 20:00:31
阅读次数:
284
exists(sql 返回结果集为真) notexists(sql 不返回结果集为真) 如下: 表A ID NAME 1 A1 2 A2 3 A3表B ID AID NAME 11B1 22B2 32B3表A和表B是1对多的关系 A.ID=>B.AIDSELECTID,NAMEFROMAWHEREE...
分类:
数据库 时间:
2014-10-25 13:04:48
阅读次数:
345
-- 表的结构 `ecs_account_log`
CREATE TABLE IF NOT EXISTS `ecs_account_log` (
`log_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID号',
`user_id` mediumint(8) unsigned NOT NULL COMMENT '用户...
分类:
数据库 时间:
2014-10-24 16:32:31
阅读次数:
278
通过指定路径访问路径下的文件,在C#的开发中主要利用了Directory类和DirectoryInfo类,简要介绍Directory类中的成员:命名空间
System.IO 命名空间
1、CreateDirectory,已重载,用于创建指定路径下的所有目录;
2、Delete,删除指定目录;
3、Exists,确定给定目录是否引用磁盘现有目录;说白点就是判断路径是否存在;
4、Get...
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might become 4
5 6 7 0 1 2).
Find the minimum element.
You may assume no duplicate exists in...
分类:
其他好文 时间:
2014-10-24 13:06:25
阅读次数:
224