#cnblogs_c2,#cnblogs_c1,#ad_t2,#under_post_card1,#under_post_card2{display:none}#cnblogs_post_body img{padding:20px 0;}#cnblogs_post_body p,li{font-si ...
分类:
Web程序 时间:
2021-04-08 13:26:53
阅读次数:
0
字体 字体相关的样式 color 用来设置字体颜色 font-size 字体的大小 与font-size相关的单位 em 相当于当前元素的一个font-size rem 相对于根元素的一个font-size Em和rem Em - em是相对于元素的字体大小来计算的 - 1em = 1font-si ...
分类:
其他好文 时间:
2021-03-29 12:22:30
阅读次数:
0
如果是单独整数划分bi=a1+...+ai的话—— 没必要说完整的话。 对每个i都成立。 如果对每个b都分配一个0或1,表示对应的bi=ai或者bi=si,那么必然只有一部分01方案有数组a对应。 实际上,b1不管是哪种,b1=a1,而对于b2,如果是0,那么b2=a2,否则a2=b2-b1也能求出 ...
分类:
其他好文 时间:
2021-03-06 15:08:58
阅读次数:
0
static int tcp_open_socket(unsigned short port, const char *bindaddr, const char *ifname){ int fd = -1, n, af, opt; struct sockaddr_in si; struct sock ...
分类:
其他好文 时间:
2021-03-03 12:28:42
阅读次数:
0
discription: 给定$n$项工作的起止时间, 每个工人同一时间最多干一件工作. 问做完这些工作最少要雇佣多少工人?(万恶的资本家) \(第一行一个整数 n,(1≤n≤100000),表示工作的数目.\) \(接下来 n 行, 第 i+1 行有俩整数 S_i, E_i, (0≤Si<Ei≤1 ...
分类:
其他好文 时间:
2021-02-19 12:58:23
阅读次数:
0
ArrayList源码 以ArrayList的add()方法为例 /** * 新增元素操作 */ // eg1:第一次新增元素e="a1", public boolean add(E e) { /** 确定是否需要扩容,如果需要,则进行扩容操作*/ ensureCapacityInternal(si ...
分类:
其他好文 时间:
2021-02-18 13:31:47
阅读次数:
0
参考答案 assume cs:code, es:data data segment a db 1,2,3,4,5,6,7,8 b dw 0 data ends code segment start: mov ax, data mov es, ax mov si, 0 mov cx, 8 s: mov ...
分类:
编程语言 时间:
2021-02-18 13:26:00
阅读次数:
0
GDB调试命令总结 步入 ssi n ni 注:n和s针对源代码的步入,而ni和si针对汇编语言,并且使用s/si步入时遇到函数会进入到函数内部,而n/ni不会 下断点 b(break) b function_name b *<addr> delete num //删除序号为num的断点 执行 r( ...
分类:
数据库 时间:
2021-01-30 11:58:22
阅读次数:
0
1 <!DOCTYPE html> 2 <html> 3 <head lang="en"> 4 <meta charset="UTF-8"> 5 <title>家用电器分类</title> 6 <style> 7 div{ 8 width: 300px; 9 } 10 h2 { 11 font-si ...
分类:
其他好文 时间:
2021-01-20 12:13:14
阅读次数:
0
对结构体排序 ''' #include<iostream> #include<algorithm> using namespace std; const int si= 101; struct segment { int l, r; bool operator < (const segment v) ...
分类:
编程语言 时间:
2021-01-18 11:05:01
阅读次数:
0