码迷,mamicode.com
首页 >  
搜索关键字:segment    ( 2130个结果
汇编逻辑运算
1.1逻辑与运算 1.2与运算功能 2.1或运算功能 2.2或运算功能 3.1逻辑非运算 4.1异或运算 4.2异或运算功能 将寄存器清0:mov bx 0(不影响标志位,标志位结果无法利用) :xor bx,bx(影响标志位,标志位结果可以利用) 5.测试运算 data segment x db ...
分类:其他好文   时间:2020-07-11 20:54:25    阅读次数:93
汇编代码基本结构
;数据段d1 segment ;定义数据段为,名为:d1 ;定义数据 buff1 db 36,36h,101100B sum1 db ?,?,? buff2 dw 100,900fh,1234h sum2 dw 3 dup(?) d1 ends;附加段 e1 segment;代码 e1 ends;栈 ...
分类:其他好文   时间:2020-07-11 12:36:50    阅读次数:96
R语言中自编基尼系数的CART回归决策树的实现
原文链接 http://tecdat.cn/?p=14056 本文为了说明回归树的构造(使用CART方法),考虑以下模拟数据集, > set.seed(1) > n=200 > X1=runif(n) > X2=runif(n) > P=.8*(X1<.3)*(X2<.5)+ + .2*(X1<.3 ...
分类:编程语言   时间:2020-07-10 15:40:29    阅读次数:99
React:创建管理后台项目demo
1、全局安装create-react-app npm install -g create-react-app 2、创建项目,安装依赖 create-react-app my-react-app 3、进入项目 cd my-react-app 4、启动项目 npm start 这是你就有了一个react ...
分类:其他好文   时间:2020-07-10 15:18:11    阅读次数:137
HashMap 和 ConcurrentHashMap 的区别
线程安全性不同, HashMap 是线程不安全的, ConcurrentHashMap 是线程安全的. ConcurrentHashMap 采用锁分段技术, 将整个 Hash 桶进行了分段 segment, 也就是将这个大的数组分成了几个小的片段 segment, 而且每个 segment 片段上面 ...
分类:其他好文   时间:2020-07-07 23:36:30    阅读次数:90
线段树1 2
##动态开点-指针 #include<iostream> #include<cstdio> using namespace std; const long long k=5e5+5; long long a[k]; struct Segment{ long long l,r; long long s ...
分类:其他好文   时间:2020-07-06 11:11:21    阅读次数:57
One Network To Segment Them All: A General, Lightweight System for Accurate 3D Medical Image Segmentation(理解)
原文链接 扫码关注下方公众号:"Python编程与深度学习",领取配套学习资源,并有不定时深度学习相关文章及代码分享。 今天分享一篇发表在MICCAI 2019上的论文:One Network To Segment Them All:A General, Lightweight System for ...
分类:Web程序   时间:2020-07-06 10:47:48    阅读次数:81
线段树 1 2
不多bb 直接代码 #include<iostream> #include<cstdio> using namespace std; const long long k=5e5+5; long long a[k]; struct Segment{ long long l,r; long long s ...
分类:其他好文   时间:2020-07-05 17:00:43    阅读次数:58
434. Number of Segments in a String
Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters. Please note that the string ...
分类:其他好文   时间:2020-07-03 10:41:10    阅读次数:59
Oracle 数据库坏块处理
情形一,有RMAN备份 1.构造坏块 SQL> select segment_name , header_file , header_block,blocks 2 from dba_segments where segment_name ='TESTC' and owner='SCOTT'; SEG ...
分类:数据库   时间:2020-07-02 16:38:57    阅读次数:62
2130条   上一页 1 ... 7 8 9 10 11 ... 213 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!