首页 > 2017年08月06日 > 全部分享
zTree 显示为‘aa’,当选择aa时,传的参数为‘22’
var setting = { view: { selectedMulti: false }, check: { enable: true //初始化树function treeInt(){ $('#treeDemo').empty(); $.ajax({ type:"get",// url:"/s ...
分类:其他   时间:2017-08-06 18:51:45    收藏:0  评论:0  赞:0  阅读:235
DOM-document 对象
Document 对象Document 对象代表整个HTML 文档,可用来访问页面中的所有元素。Document 对象是 Window 对象的一个部分,可通过 window.document 属性来访问。 Document 对象的常用方法 1、getElementById(id) 通过元素的ID访问 ...
分类:其他   时间:2017-08-06 18:51:21    收藏:0  评论:0  赞:0  阅读:246
上周单词集锦
observer 观察者Korea 朝鲜nuclear weapon 核武器 component 组件scan 扫描context 上下文context:component-scan 扫描的组件 placeholder 占位符context:property-placeholder 属性占位符(用于 ...
分类:其他   时间:2017-08-06 18:51:10    收藏:0  评论:0  赞:0  阅读:233
513. Find Bottom Left Tree Value
现在开始考bfs 了吗, 根据size办事,分情况了 dfs: 先序遍历 + 树的深度, 跟此题类似: 199 Binary Tree Right Side View ...
分类:其他   时间:2017-08-06 18:51:00    收藏:0  评论:0  赞:0  阅读:264
响应式的嵌入内容和图片
依据被嵌入内容的外部容器的宽度,自己主动创建一个固定的比例,从而让浏览器自己主动确定视频或 slideshow 的尺寸,可以在各种设备上缩放。 这些规则被直接应用在 iframe、embed 和 object 元素上。假设你希望让终于样式与其它属性相匹配,还能够明白地使用一个派生出来的 .embed ...
分类:其他   时间:2017-08-06 18:50:52    收藏:0  评论:0  赞:0  阅读:197
53. Maximum Subarray
https://leetcode.com/problems/maximum-subarray/description/ Find the contiguous subarray within an array (containing at least one number) which has th ...
分类:其他   时间:2017-08-06 18:50:41    收藏:0  评论:0  赞:0  阅读:210
Codeforces Round #290 (Div. 2) 拓扑排序
C. Fox And Names time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output C. Fox And Names time l ...
分类:编程语言   时间:2017-08-06 18:50:26    收藏:0  评论:0  赞:0  阅读:232
Linux进程2——进程加载
Linux每个可执行程序都具有相同的虚拟地址分配,当OS启动进程时,是如何加载程序呢? 1. 进程结构体 每个进程都具有task_struct结构体,该结构体的mm字段负责对程序内存的虚拟地址映射。 mm中每个vm_area_struct对应可执行程序的段虚拟地址空间,例如.text等。当程序被执行 ...
分类:系统服务   时间:2017-08-06 18:49:59    收藏:0  评论:0  赞:0  阅读:191
[luoguP1136] 迎接仪式(DP)
传送门 每个字母只有两种选择,变成另一个或者不变。 所以f[i][j][k]表示前i个字母有j个j变成z,有k个z变成j 只需要比较j==k时的答案就行 ...
分类:其他   时间:2017-08-06 18:49:39    收藏:0  评论:0  赞:0  阅读:253
复制文本消息
引入: <script src="../styles/js/plugins/zeroclipboard/ZeroClipboard.min.js"></script> //复制整行数据:function copyDataByZeroClipboard() { var cellClick = new ...
分类:其他   时间:2017-08-06 18:49:26    收藏:0  评论:0  赞:0  阅读:168
python内建函数
#abs 求绝对值 print(abs(-1)) #all #判断函数内部的布尔值,如果都是Trun则返回true #空是True print(all([1,2,'a',None])) print(all([])) #bool值为假的情况:None,空,0,False #any #如果函数内部的布尔... ...
分类:编程语言   时间:2017-08-06 18:49:13    收藏:0  评论:0  赞:0  阅读:224
USACO4.2.1 网络流最大流算法
/* ID:hk945801 TASK:ditch LANG:C++ */ #include<iostream> #include<cstdio> #include<cstring> using namespace std; const int inf=10000001; struct node{ ...
分类:编程语言   时间:2017-08-06 18:48:37    收藏:0  评论:0  赞:0  阅读:155
天鹅会面
天鹅会面 题目 两头白天鹅生活在一个部分湖面结了冰的湖泊中,湖面的形状为一个长方形,并且被分割成R行C列的小方格,某些方格中结了冰,这样的方格称之为冰格,其余的方格称之为水格。冬天过去了,湖面上的冰渐渐开始溶解了,每一天与水相邻的冰格就将消融而转化为水格。所谓两个方格相邻是指它们在水平或垂直方向有公 ...
分类:其他   时间:2017-08-06 18:48:20    收藏:0  评论:0  赞:0  阅读:175
主席树(可持久化线段树版)
求区间和模板 ...
分类:其他   时间:2017-08-06 18:48:07    收藏:0  评论:0  赞:0  阅读:232
Mysql-5-数据表的基本操作
1.创建表:之前需要use database database_name 然后create table 表名(); 例:创建员工表tb_employee1,结构如下表所示 字段名称 数据类型 备注 id int(11) 员工编号 name varchar(25) 员工名称 depld int(11) ...
分类:数据库技术   时间:2017-08-06 18:47:35    收藏:0  评论:0  赞:0  阅读:203
[Angular] Reactive Store and AngularFire Observables
A simple store implemenet: Using this store in AuthService: Using Reactive approach in app.component.ts: ...
分类:其他   时间:2017-08-06 18:47:20    收藏:0  评论:0  赞:0  阅读:174
Windows10上搭建Kinect 2 开发环境
因为Visual Studio 2017的应用最低只能面向windows10,而Kinect SDK 2.0的系统版本要求是windows 8,所以不得不下载Visual Studio 2013 community版。 推荐参考文档:http://www.egr.msu.edu/classes/ec ...
分类:Windows开发   时间:2017-08-06 18:47:10    收藏:0  评论:0  赞:0  阅读:240
HDU 6015 Skip the Class
Skip the Class 代码: ...
分类:其他   时间:2017-08-06 18:46:45    收藏:0  评论:0  赞:0  阅读:159
KindEditor 4.1.7的使用技巧
1、载入进这个自己写的js代码 $(function(){ if ($("textarea.editor").length) { var editor = KindEditor.create('textarea.editor', { resizeType : 0, allowPreviewEmoti ...
分类:其他   时间:2017-08-06 18:46:36    收藏:0  评论:0  赞:0  阅读:212
HDU 4825 Xor Sum
Problem Description Zeus 和 Prometheus 做了一个游戏,Prometheus 给 Zeus 一个集合,集合中包含了N个正整数,随后 Prometheus 将向 Zeus 发起M次询问,每次询问中包含一个正整数 S ,之后 Zeus 需要在集合当中找出一个正整数 K ...
分类:其他   时间:2017-08-06 18:46:17    收藏:0  评论:0  赞:0  阅读:242
1575条   上一页 1 ... 27 28 29 30 31 ... 79 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!