The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elev ...
分类:
其他好文 时间:
2019-08-03 11:19:56
阅读次数:
104
题目描述 "链接" 给一棵树,在树根处货物的价格为p,然后每往下走一层,价格增加r%,求所有叶子结点的最高价格,以及这个价格的叶子结点个数 分析 关键在于dfs怎么设计来保存这个最大值,以及最大值的个数 别人的代码如下,比较巧。。。还用了个maxnum。。我怎么没想到 c++ void dfs(in ...
分类:
其他好文 时间:
2019-08-01 20:15:34
阅读次数:
158
[TOC] 伪类标签 总结: 1.伪类选择器优先级与类相同 2.nth child在同一结构下都是相同选择器时使用 3.nth of type在同一结构下不全是相同选择器时使用 a标签的四大伪类 普通标签的伪类运用 属性选择器 总结: 1.属性选择优先级同类 2.[属性名] 查找所有该属性的标签 3 ...
分类:
Web程序 时间:
2019-07-31 01:01:58
阅读次数:
189
CSS3分类(先知道有什么): 新增选择器: 1.层次选择器: 2.动态伪类选择器语法 3.目标伪类选择器 4.UI元素状态伪类选择器语法 5.结构伪类选择器使用语法 注:(1),“ul>li:nth-child(3)”表达的并不是一定选择列表ul元素中的第3个子元素li,仅有列表ul中第3个li元 ...
分类:
Web程序 时间:
2019-07-30 12:57:12
阅读次数:
147
对css的伪类选择器真的是又爱又恨,每次都很完美的被搞混了,还是得做一下总结。 1. :nth-of-type(n) 选择第n个元素 2. :last-of-type 选择最后一个元素 3. :first-of-type 选择第一个元素 4. :nth-child(n) 选择父元素的第n个子元素 5 ...
分类:
Web程序 时间:
2019-07-30 00:39:55
阅读次数:
130
This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Inp ...
分类:
其他好文 时间:
2019-07-27 21:06:07
阅读次数:
139
举例说明: <ul> <p>111</p> <span>222</span> <li>1</li> <li>2</li> <li>3</li> </ul> li:nth-of-type(2):表示ul下的第二个li元素 li:nth-child(2):表示既是li元素又是在ul下的第二个元素(找不到 ...
分类:
Web程序 时间:
2019-07-26 14:27:38
阅读次数:
132
A. Nth power of n 单点时限: 1.0 sec 内存限制: 512 MB 单点时限: 1.0 sec 内存限制: 512 MB 单点时限: 1.0 sec 内存限制: 512 MB 求 nn 的个位数。 输入格式 多组输入,处理到文件结束。每组数据输入一个 n。(1≤n≤109) 输 ...
分类:
其他好文 时间:
2019-07-21 18:29:48
阅读次数:
109
Description 73 88 1 02 7 4 44 5 2 6 5(Figure 1) Figure 1 shows a number triangle. Write a program that calculates the highest sum of numbers passed on ...
分类:
其他好文 时间:
2019-07-17 20:33:56
阅读次数:
96
Pseudo-Classes Selectors(伪类选择器) E:not(s) E:root E:target E:first-child E:last-child E:only-child E:nth-child(n) E:nth-last-child(n) 这一行的选择器,都会考虑其他元素的的 ...
分类:
Web程序 时间:
2019-07-15 13:19:41
阅读次数:
168