逐行入栈,排序后直接输出第k小的数据 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self. ...
分类:
编程语言 时间:
2021-06-25 16:32:21
阅读次数:
0
要想让uibutton点击不变灰 初始化的时候就不能 UIButton *button = [[UIButton alloc]init]; 初始化的时候酱紫,能够保证button点击时不变灰 UIButton *button = [UIButton buttonWithType:UIButtonTy ...
分类:
其他好文 时间:
2021-06-24 18:33:25
阅读次数:
0
大意 给一棵树,初始时结点都为白色,然后你可以选一个点作为根节点,加上这个节点连通的白色节点数,然后把这个点染黑。下面再继续选择与黑节点相连的点,加上白色节点数,染黑。求最大的值。 思路 那么我们很容易意识到,起关键作用的就是选择了那个根节点。设dp[i]为以i为根节点的最大值。则,我们对于一个根节 ...
分类:
其他好文 时间:
2021-06-24 18:02:05
阅读次数:
0
Vue_控件(tree_table) 要使用tree_table之前要进行依赖的插入, 插入方法可以在vue UI中直接搜索依赖插入 在main.js中导入组件,然后全局定义组件,在使用组件的时候使用 import TreeTable from 'vue-table-with-tree-grid' ...
分类:
其他好文 时间:
2021-06-24 17:57:41
阅读次数:
0
由于项目中需要设计树形菜单功能,经过一番捣腾之后,终于给弄出来了,所以便记下来,也算是学习zTree的一个总结吧。 zTree的介绍: 1、zTree 是利用 JQuery 的核心代码,实现一套能完成大部分常用功能的 Tree 插件 2、zTree v3.0 将核心代码按照功能进行了分割,不需要的代 ...
分类:
Web程序 时间:
2021-06-23 17:08:51
阅读次数:
0
/** * 去除左侧空格 */ function lTrim(str) { if (str) { return str.replace(/(^\s*)/g,""); } return null } /** * 去除右侧空格 */ function rTrim(str) { if (str) { re ...
分类:
Web程序 时间:
2021-06-23 17:07:01
阅读次数:
0
// 创建 websocket.js 文件夹 let wsurl = 'ws://82.157.123.54:9010/ajaxchattest' let ws = null let weboscket_callback = null //获取 websocket 推送的数据 let websock ...
分类:
Web程序 时间:
2021-06-23 17:04:51
阅读次数:
0
dataadd() 函数在日期中添加或减去指定的时间间隔 2021-04-24 前一天的时间 dataadd('2021-04-24 00:00:00',-1,'dd'); ...
分类:
数据库 时间:
2021-06-23 17:01:00
阅读次数:
0
react语法 ReactDOM.render( <h1>Hello, world!</h1>, document.getElementById('example') ); JavaScript 表达式 ReactDOM.render( <div> <h1>{1+1}</h1> </div> , d ...
分类:
其他好文 时间:
2021-06-23 16:46:19
阅读次数:
0
前期准备工作 数据库表 dp.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/netshop?useSSL=true&useUnicode=true&characterEncoding=utf-8 use ...
分类:
其他好文 时间:
2021-06-23 16:40:43
阅读次数:
0