码迷,mamicode.com
首页 >  
搜索关键字:hash tree    ( 28321个结果
JS中dom0级事件和dom2级事件的区别介绍
dom0级事件 1 2 3 4 5 6 7 8 9 10 <a href="#" id="hash" onclick="fn();fn();"> <button type="button">返回上面进行开通</button> </a> var btn=$('#hash').get(); btn.on ...
分类:Web程序   时间:2020-12-04 11:31:36    阅读次数:11
内网安全3-域横向smb&wmi明文或hash传递
#知识点1: Windows2012以上版本默认关闭wdigest,攻击者无法从内存中获取明文密码 Windows2012以下版本如安装KB2871997补丁,同样也会导致无法获取明文密码 针对以上情况,我们提供了4种方式解决此类问题 1.利用哈希hash传递(pth,ptk等)进行移动 2.利用其 ...
分类:其他好文   时间:2020-12-03 12:22:48    阅读次数:4
leetcode_110. 平衡二叉树
给定一个二叉树,判断它是否是高度平衡的二叉树。 本题中,一棵高度平衡二叉树定义为: 一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过 1 。 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/balanced-binary-tree 著作 ...
分类:其他好文   时间:2020-12-03 11:59:09    阅读次数:6
NoteOfMySQL-01-初学数据库
一、MySQL简介 MySQL是一款单进程多线程、支持多用户、基于CS的关系数据库管理系统,属于开源软件(GPL协议)。 MySQL分为社区版(Community Edition)和企业版(Enterprise)。 MySQL命令以分号;或\g或\G结尾。 数据库包括表、视图、索引、存储过程、函数、 ...
分类:数据库   时间:2020-12-02 12:47:54    阅读次数:22
LeetCodeE-移除重复节点
非商业,LeetCode链接附上: https://leetcode-cn.com/problems/remove-duplicate-node-lcci/ 进入正题。 题目: 编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。 示例: 示例1: 输入:[1, 2, 3, 3, 2, 1] ...
分类:其他好文   时间:2020-12-01 12:35:57    阅读次数:10
【leetcode】1399. 统计最大组的数目
int countLargestGroup(int n){ int hash[37]={0}; int map[10001]={0}; int i, sum, tmp, max=0, cnt=0; for(i=1; i<=n; i++){ map[i]=map[i/10]+i%10; hash[ma ...
分类:其他好文   时间:2020-12-01 12:05:58    阅读次数:4
Mybatis中返回Map
在Mybatis中,我们通常会像下边这样用: 返回一个结果 User selectOne(User user); <select id="selectOne" parameterType="cn.lyn4ever.entity.User" resultType="cn.lyn4ever.entity ...
分类:其他好文   时间:2020-12-01 11:56:33    阅读次数:2
Unable to locate package python3 错误解决办法
##错误 huny@DESKTOP-N1EBKQP:/mnt/c/Users/Administrator$ sudo apt-get install python3 Reading package lists... Done Building dependency tree Reading stat ...
分类:编程语言   时间:2020-11-30 15:30:15    阅读次数:8
二叉树——复制、计算深度、统计节点数、统计叶子节点数、比较两个树、交换左右子树节点、双序遍历
void copy(BiTree T,BiTree &NewT){ //复制树 if(T == NULL){ NewT = NULL; return; }else { NewT = new BiTNode; NewT->data = T->data; copy(T->lchild,NewT->lch ...
分类:其他好文   时间:2020-11-30 15:28:17    阅读次数:2
MySQL之索引优化
一、Table Demo CREATE TABLE `employees` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(24) NOT NULL DEFAULT '' COMMENT '姓名', `age` int(11) NOT N ...
分类:数据库   时间:2020-11-30 15:26:05    阅读次数:7
28321条   上一页 1 ... 40 41 42 43 44 ... 2833 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!