题目都太难了 我心态有点爆炸 来点简单的东西愉悦一下身心。 打代码真的是一件令人欢快的事情。 KD tree这个数据结构以前学过好多遍了 以前我还学会过 但是好像一直没写过到现在也就忘了。。 趁这个晚上赶紧补一发。 首先是 nth_element函数 所需头文件 algorithm 使用格式nth_ ...
分类:
其他好文 时间:
2020-03-05 15:04:32
阅读次数:
72
//奇数行显示 table tr:nth-child(odd){ background:red; } //偶数行显示 table tr:nth-child(even){ background:red; } //取消table表格间隔 table{ border-collapse:collapse; ...
分类:
Web程序 时间:
2020-03-04 19:28:42
阅读次数:
90
19. 删除链表的倒数第N个节点 [toc] 1、题目介绍 给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。 试题链接:https://leetcode cn.com/problems/remove nth node from end of list/ 2、java 2.1、遍历两 ...
分类:
其他好文 时间:
2020-03-02 22:47:07
阅读次数:
64
两者都是选择器,在CSS和JS中,都可以用来选择元素。得到一个元素,或者元素集。 x:nth-child(n) 获取 x元素的父元素中,第n个元素。无类型限制。 x:nth-of-type(n) 获取x元素父元素中,第n个x元素。限制了类型。 因此,仅仅从字面意义上,就能做好区分了,一个是限制了类型 ...
分类:
其他好文 时间:
2020-02-23 22:15:44
阅读次数:
55
Css3基础操作 . Css3? css3事css的最新版本 width. heith.background.border**都是属于css2.1CSS3会保留之前 CSS2.1的内容,只是添加了一些新的语法。CSS3 : border-radius :nth-of-type() backgroun ...
分类:
Web程序 时间:
2020-02-23 20:30:22
阅读次数:
97
题意:删除链表中倒数第N个节点。 法一:递归。每次统计当前链表长度,如果等于N,则return head -> next,即删除倒数第N个节点;否则的话,问题转化为子问题“对head->next这个链表删除倒数第N个节点”,将head的next指针指向该子问题的结果,返回head即可。这个方法时间复 ...
分类:
其他好文 时间:
2020-02-22 22:27:08
阅读次数:
72
Write a SQL query to get the nth highest salary from the Employee table. + + + | Id | Salary | + + + | 1 | 100 | | 2 | 200 | | 3 | 300 | + + + For exa ...
分类:
其他好文 时间:
2020-02-11 18:53:28
阅读次数:
53
链接 "Remove Nth Node From End of List" 难度 Medium 描述 Given a linked list, remove the _n_ th node from the end of list and return its head. 给定一个链表,要求移除导数 ...
分类:
其他好文 时间:
2020-02-10 09:48:14
阅读次数:
47
1 """ 2 Given a linked list, remove the n-th node from the end of list and return its head. 3 Example: 4 Given linked list: 1->2->3->4->5, and n = 2. ...
分类:
其他好文 时间:
2020-02-07 20:26:51
阅读次数:
78
<div class="ms-u"></div> <div class="ms-u"></div> <div class="ms-u"></div> $(".vipCardItem:nth-child(1)").addClass("current"); .ms-u:nth-child(1) {... ...
分类:
Web程序 时间:
2020-02-07 12:48:36
阅读次数:
612