<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <title>Title</title> <meta charset= ...
分类:
其他好文 时间:
2020-02-17 18:17:14
阅读次数:
74
今日内容 jquery选择器补充 模态对话框 创建、修改标签attr 文档操作 text、html都是清空写 append、prepend等都是额外添加 empty清空标签 remove删除标签 字符占位符${变量名} 反引号内部 括号里写要加入的内容。 var tr_str = ; js html ...
分类:
Web程序 时间:
2020-02-16 20:38:17
阅读次数:
97
题目描述 题解 吼题 推荐博客:https://www.cnblogs.com/jz 597/p/12300760.html 最暴力的做法是把n个2^m的FWT乘起来,这样显然不行 先把pi,1\~k异或上pi,1,把pi,1变为0,最后再把pi,1异或回去 考虑FWT(xor)的本质,tr(A)= ...
分类:
其他好文 时间:
2020-02-16 19:06:27
阅读次数:
103
给定一个二叉树,返回其按层次遍历的节点值。 (即逐层地,从左到右访问所有节点)。 例如:给定二叉树: 返回其层次遍历结果: 代码如下: /** * Definition for a binary tree node. * public class TreeNode { * int val; * Tr ...
分类:
其他好文 时间:
2020-02-14 18:05:07
阅读次数:
57
触发器的基础知识:create trigger tr_name on table/view{for | after | instead of } [update][,][insert][,][delete][with encryption]as {batch | if update (col_nam ...
分类:
数据库 时间:
2020-02-14 00:29:36
阅读次数:
91
1 """ 2 Given a binary tree, return the inorder traversal of its nodes' values. 3 Example: 4 Input: [1,null,2,3] 5 1 6 \ 7 2 8 / 9 3 10 Output: [1,3,2 ...
分类:
其他好文 时间:
2020-02-13 22:54:06
阅读次数:
53
jar存放位置 jar包配置方式 迭代器:迭代输出。 <c:forEach items="${lis}" var="lis"> <tr align="center"> <th>${lis.id}</th> <th>${lis.lastName}</th> <th>${lis.email}</th> ...
分类:
编程语言 时间:
2020-02-13 22:46:40
阅读次数:
75
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <title>文档处理</title> <script src="jq ...
分类:
Web程序 时间:
2020-02-13 11:19:54
阅读次数:
100
引入treeTable需要的文件后始终不能加载出树状的表格原因: 从后端加载出的数据必须符合树状的结构,例如: <tr data-tt-id='1111' data-tt-parent-id='0'> <td></td> <td></td> <td></td> ...... </tr> <tr da ...
分类:
其他好文 时间:
2020-02-12 22:37:25
阅读次数:
100
<table></table> 表格标签 <tr></tr> 表格行标签 <td><.td> 单元格标签 <th></th> 表头单元格标签 <caption></caption> 表格表体标签 clospan&rowspan 合并属性 表格属性 align 表格对齐方式 cellspacing 单 ...
分类:
其他好文 时间:
2020-02-12 16:41:41
阅读次数:
82