码迷,mamicode.com
首页 >  
搜索关键字:builds has been thro    ( 12534个结果
Binary tree
"Abstract:" In computer science, a binary tree is a tree data structure in which each node has at most two children, which are referred to as the left ...
分类:其他好文   时间:2020-05-08 18:11:11    阅读次数:61
IDA逆向常用宏定义
/* This file contains definitions used by the Hex-Rays decompiler output. It has type definitions and convenience macros to make the output more reada ...
分类:其他好文   时间:2020-05-08 16:13:24    阅读次数:107
Freight Train(二分+思维)
The chemical company NS (Nasty Substances) has three factories: one in the Netherlands, one in Belgium and one in Luxembourg. Chemicals are moved betw ...
分类:其他好文   时间:2020-05-08 12:56:48    阅读次数:78
python set dict实现原理
Python数据结构总结 dict与set的实现原理 两者的原理都是哈希表。 dict与set实现原理是一样的,都是将实际的值放到list中。唯一不同的在于hash函数操作的对象,对于dict,hash函数操作的是其key,而对于set是直接操作的它的元素,假设操作内容为x,其作为因变量,放入has ...
分类:编程语言   时间:2020-05-08 12:53:05    阅读次数:74
python opencv KeyPoint
cv::KeyPoint::KeyPoint ( Point2f _pt, float _size, float _angle = -1, float _response = 0, int _octave = 0, int _class_id = -1 ) Parameters _pt x & y ...
分类:编程语言   时间:2020-05-07 23:13:27    阅读次数:127
Spring框架里注解@Autowired的工作原理
Suppose I have a bean named HelloWorld which has a member attribute points to another bean User. With annotation @Autowired, as long as getBean is cal ...
分类:编程语言   时间:2020-05-07 19:52:02    阅读次数:183
MySQL学习(二十四)主从同步-半同步
## 概述 MySQL 默认是异步复制,半复制是为了数据一致性,防止异步同步数据过程中,事务丢失。同步复制的话可以保证数据的一致性,数据不丢失可以回滚,但是响应慢,master 必须等待 slave 返回的ack响应才算完整地完成事务,而异步复制则有可能出现数据不一致的问题,半复制处于异步复制和同步... ...
分类:数据库   时间:2020-05-07 17:00:04    阅读次数:95
can_has_stdio?
得到一个用±<>这样符号组成的五角星,结合题目stdio,估计是c语言编译后的文件 查到BrianFuck语言,找个在线编译器或者找到编译码(c++)得到flag 在线编译网站 brainfuck 或者c的编译码 地址 ...
分类:其他好文   时间:2020-05-05 19:39:27    阅读次数:85
Flask——server.py引入其他python文件
问题 今天用Flask写web项目时出现了一个问题:AttributeError: 'function' object has no attribute '**********'(函数名已用*代替),即在server.py中引用其他python文件失败,不能调用其他python文件的函数。 解决方法 ...
分类:编程语言   时间:2020-05-04 21:22:16    阅读次数:189
ES6中的let
一、没有声明提升 var有声明提升。 用let来声明变量时,不会将声明提升到最顶部。 因此,当我们使用let来声明变量时,一定要 先声明再使用 。 注意: let声明的变量不会被挂载到window对象上。 二、暂时性死区(块级作用域) var不存在块级作用域,只有全局作用域和函数作用域。 ES6中存 ...
分类:其他好文   时间:2020-05-04 21:00:39    阅读次数:65
12534条   上一页 1 ... 34 35 36 37 38 ... 1254 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!