select name from sys.objects A where EXISTS( select * from sys.sql_modules where definition like '%{此处为查找内容}%' and A.object_id = object_id) ...
分类:
数据库 时间:
2017-12-11 14:10:38
阅读次数:
163
html超文本标记语言 head 头部font 字体 字形i(italic) 倾斜,斜体字big 大的,字体加大hr 水平线Pre(predefined)预定义h5标题5Div(division)区隔标记circle 空心圆,圈dt(Define title定义的标题dl(Definition li ...
分类:
Web程序 时间:
2017-12-11 13:52:56
阅读次数:
216
1 概述 CMD(Common Module Definition)是国内大牛玉伯在开发SeaJS的时候提出来的,属于CommonJS的一种规范,根据浏览器的异步环境做了自己的实现。它和 AMD 很相似,尽量保持简单,并与 CommonJS 和 Node.js 的 Modules 规范保持了很大的兼 ...
分类:
其他好文 时间:
2017-12-03 22:50:32
阅读次数:
225
1 概述 AMD(Asynchronous Module Definition),也就是异步模块定义。AMD规范,制定了定义模块的规则,使得模块之间的依赖可以被异步加载。这和浏览器的异步加载模块的环境刚好适应(浏览器同步加载模块会导致性能、可用性、调试和跨域访问等问题)。 所谓异步,就是所有的模块将 ...
分类:
其他好文 时间:
2017-12-03 21:45:28
阅读次数:
204
Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The lowes ...
分类:
其他好文 时间:
2017-12-03 13:59:10
阅读次数:
195
Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST. According to the definition of LCA on Wikipedia ...
分类:
其他好文 时间:
2017-12-03 12:55:33
阅读次数:
134
Part1 : 插头DP 从一道题讲起: 给你一个m n的棋盘,有的格子是障碍,问共有多少条回路使得经过每个非障碍格子恰好一次 (m, n ≤ 12) " 基于连通性状态压缩的动态规划问题 " Definition 1 插头 : 插头DP有两种实现方法:逐行和逐格 逐格不需要预处理出所有可行状态,较 ...
分类:
其他好文 时间:
2017-12-02 16:14:18
阅读次数:
168
target:learning the APi of .xlsx generation and .xlsx data outputting etc component APIsOverView Excel() (SS=HSSF+XSSF+SXSSF) 1:definition: HSSF is th ...
分类:
其他好文 时间:
2017-12-02 15:07:19
阅读次数:
220
Python函数 先来看下面代码: 如上代码,就定义了一个函数。 调用后的结果为: 这里,我们引用一下Python官方文档对Python函数的定义: The keyword def introduces a function definition. It must be followed by th ...
分类:
编程语言 时间:
2017-11-30 00:44:20
阅读次数:
160
基础 Vue.js允许自定义指令,实质上是让你教 Vue一些新技巧:怎样将数据的变化映射到 DOM 的行为。可以使用 Vue.directive(id, definition) 的方法传入指令 id 和定义对象来注册一个全局自定义指令。定义对象需要提供一些钩子函数(全部可选): bind: 仅调用一 ...
分类:
其他好文 时间:
2017-11-28 01:23:43
阅读次数:
132