04 2021 档案

摘要:树 建树 struct tr{ char x; tr*lc,*rc; }; #define nu NULL // 建树 tr* create() { tr*t ; char x;cin>>x; if(x=='#') { t=nu; }else{ t=new tr; t->x=x; t->lc=nu; 阅读全文
posted @ 2021-04-16 17:53 Calculus9 阅读(87) 评论(0) 推荐(0)
摘要:git安装教程 node.js安装教程 vscode配置c/c++ oracle11安装 阅读全文
posted @ 2021-04-13 21:10 Calculus9 阅读(48) 评论(0) 推荐(0)
摘要:小中大 #include<bits/stdc++.h> using namespace std; int a[100010]; const int inf=0x3f3f3f3f; int main() { int n;cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; 阅读全文
posted @ 2021-04-08 21:19 Calculus9 阅读(95) 评论(0) 推荐(0)
摘要:定位 相对定位 <div class="box1" >1</div> <div class="box2">2</div> <div class="box3">3</div> body{ font-size: 30px; } .box1,.box2,.box3{ width: 200px; heigh 阅读全文
posted @ 2021-04-03 04:50 Calculus9 阅读(71) 评论(0) 推荐(0)
摘要:浮动 <!-- 浮动:简单来说,通过浮动可以使一个元素向其父元素的 左侧或者右侧移动 float(气球) 可选值: none 默认值,不浮动 left 向左浮动 right 向右浮动 --> <div class="box1"></div> .box1{ width: 200px; height: 阅读全文
posted @ 2021-04-03 03:50 Calculus9 阅读(99) 评论(0) 推荐(0)
摘要:字体 字体 p{ font-family: '宋体'; } 字体大小 font-size: 30px; 字体粗细 font-weight:bold; 字体样式 /* normal italic */ font-style:italic; 颜色 /* color */ color:red; /* 表示 阅读全文
posted @ 2021-04-02 15:05 Calculus9 阅读(79) 评论(0) 推荐(0)
摘要:布局 1.文档流 <!-- 网页是一个多层结构(蛋糕) 文档流是蛋糕的底层,是网页的基础 元素的状态: 在文档中 不在文档中(脱离文档流) 元素在文档流中的特点: -块元素 ①独占一行(自上而下垂直排列) ②默认宽度是父元素的全部 ③默认高度是被子元素撑开 -行内元素 ①行内元素只占元素自身大小 ② 阅读全文
posted @ 2021-04-02 02:35 Calculus9 阅读(74) 评论(0) 推荐(0)