礼悟: 公恒学思合行悟,尊师重道存感恩。叶见寻根三返一,江河湖海同一体。 虚怀若谷良心主,愿行无悔给最苦。读书锻炼养身心,诚劝且行且珍惜。 代码 效果 CSS3优秀,值得学习。学习资源: www.w3cschool.cn + itcast和itheima视频库 + 清净的心地。如果您有公开的资源,可 ...
分类:
Web程序 时间:
2018-02-10 21:21:03
阅读次数:
411
礼悟: 公恒学思合行悟,尊师重道存感恩。叶见寻根三返一,江河湖海同一体。 虚怀若谷良心主,愿行无悔给最苦。读书锻炼养身心,诚劝且行且珍惜。 代码 效果 CSS3优秀,值得学习。学习资源: www.w3cschool.cn + itcast和itheima视频库 + 清净的心地。如果您有公开的资源,可 ...
分类:
Web程序 时间:
2018-02-10 21:20:52
阅读次数:
2735
礼悟: 公恒学思合行悟,尊师重道存感恩。叶见寻根三返一,江河湖海同一体。 虚怀若谷良心主,愿行无悔给最苦。读书锻炼养身心,诚劝且行且珍惜。 代码 效果 CSS3优秀,值得学习。学习资源: www.w3cschool.cn + itcast和itheima视频库 + 清净的心地。如果您有公开的资源,可 ...
分类:
Web程序 时间:
2018-02-10 21:18:42
阅读次数:
221
Given a linked list, remove the nth node from the end of list and return its head. For example, Given linked list: 1->2->3->4->5, and n = 2. After rem ...
分类:
其他好文 时间:
2018-02-04 12:42:30
阅读次数:
127
Find the Nth number in Fibonacci sequence. A Fibonacci sequence is defined as follow: The first two numbers are 0 and 1. The i th number is the sum of ...
分类:
其他好文 时间:
2018-02-03 16:17:47
阅读次数:
131
1:题目描述 Given an integer n, generate the nth term of the count-and-say sequence. 找规律,给定一个数n后,写出第n行的字符串 2:题目分析 突然发现自己的Say实在不发达,看了半个多小时才知道咋回事。n就是再说n-1行的内 ...
分类:
其他好文 时间:
2018-02-02 23:21:23
阅读次数:
179
nth child(n) 但是如果子元素是混乱的,比如: nth child(2)会选择第2个子元素,而且子元素必须是span,但是没找到(第二个子元素为p) nth child(3)会选择第3个子元素,而且子元素必须是span 相关 nth last child(n) 从后往前找子元素 nth o ...
分类:
Web程序 时间:
2018-01-26 14:12:48
阅读次数:
213
一、问题描述 给定一个链表和一个数n,要求删除该链表的倒数第n个节点。给定n一定是合理的,只遍历一遍 例子:给定链表1->2->3->4->5,n=2,执行删除操作之后链表变成1->2->3->5。 二、问题解决 这种遍历一遍找出第几个、倒数第几个、中间节点的题,都是通过两个节点来解决,本题中,先让 ...
分类:
其他好文 时间:
2018-01-14 12:04:20
阅读次数:
123
1 /*标准写法*/ 2 .item:nth-child(1) .linear-gradient { 3 background-image: linear-gradient(yellow, green); 4 } 5 6 /*多个颜色渐变*/ 7 .item:nth-child(2) .linear ...
分类:
其他好文 时间:
2018-01-10 18:46:51
阅读次数:
124
/*从一个中心点开始沿着四周方向进行渐变*/ .item:nth-child(1) .radial-gradient { background-image: radial-gradient(yellow, green); } /*1、辐射范围 2、中心点 3、颜色的起止*/ .item:nth-ch... ...
分类:
其他好文 时间:
2018-01-10 18:36:21
阅读次数:
152