代码 #define tu nod[u] #define tv nod[v] #define e tree[id] #define lson tree[id*2] #define rson tree[id*2+1] int N; struct node{ int top,fa,deep,s,p,fp ...
分类:
其他好文 时间:
2016-08-11 09:43:05
阅读次数:
165
Question:
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of the nod...
分类:
其他好文 时间:
2016-08-07 21:52:42
阅读次数:
178
第一步:下载Nodejs并安装 官方下载地址:https://nodejs.org/en/,我选择的是长期支持版本v4.47,安装时只要一直下一步就ok了 安装完成后可以使用cmd(win+r然后输入cmd进入)测试下是否安装成功。方法:在cmd下输入node -v,出现下图版本提示就是完成了Nod ...
#include <iostream>#include <stack>using namespace std; //定义结点结构体struct Node{ int data; struct Node * next;} ; //创建单链表Node * Create(int n){ int i; Nod ...
分类:
其他好文 时间:
2016-08-04 21:16:04
阅读次数:
182
第1章 单链表 1.1 删除单链表中的结点 203 Remove Linked List Elements 83 Remove Duplicates from Sorted List 82 Remove Duplicates from Sorted List II 19 Remove Nth Nod ...
分类:
其他好文 时间:
2016-07-23 00:34:27
阅读次数:
178
gulp是基于nodejs的自动化构建工具, 可自动化完成js css sass less html image的测试、检查、合并、压缩、格式化、浏览器自动刷新、部署文件生成、监听文件。 1:基于nodejs先装nodejs(.msi) 2:命令行装npm,npm是nodejs的包管理工具,对nod ...
分类:
其他好文 时间:
2016-07-22 18:38:10
阅读次数:
222
Remove Linked List Elements、 Remove Duplicates from Sorted List、 Remove Duplicates from Linked Sorted II、 Remove Nth Node from End of List、 Delete Nod... ...
分类:
其他好文 时间:
2016-07-19 23:37:06
阅读次数:
347
1009 数字1的数量 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 1009 数字1的数量 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 1009 数字1的数量 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 ...
分类:
其他好文 时间:
2016-07-18 02:30:37
阅读次数:
156
原题链接 Lcm(a,b)表示a和b的最小公倍数,A(n)表示Lcm(n,i)的平均数(1 <= i <= n), 例如:A(4) = (Lcm(1,4) + Lcm(2,4) + Lcm(3,4) + Lcm(4,4)) / 4 = (4 + 4 + 12 + 4) / 4 = 6。 F(a, b ...
分类:
其他好文 时间:
2016-07-14 23:48:06
阅读次数:
278