应用层的许多协议都是基于客户服务器方式。客户(client)和服务器(server)都是指通信中所涉及的两个应用进程。客户服务器方式所描述的是进程之间服务和被服务的关系。客户是服务请求方,服务器是服务提供方。 域名系统DNS 域名系统概述 域名系统DNS(Domain Name System)时互联 ...
分类:
其他好文 时间:
2018-05-11 20:44:29
阅读次数:
320
Travel The country frog lives in has nn towns which are conveniently numbered by 1,2,…,n1,2,…,n. Among n(n?1)2n(n?1)2 pairs of towns, mm of them are c ...
分类:
其他好文 时间:
2018-04-26 23:38:07
阅读次数:
326
1. 双向链表的定义 每个节点有两个链接:一个指向前一个节点,当此节点为第一个节点时,指向空值;而另一个指向下一个节点,当此节点为最后一个节点时,指向空值。 2. 操作 is_empty() 链表是否为空 length() 链表长度 travel() 遍历链表 add(item) 链表头部添加 ap ...
分类:
编程语言 时间:
2018-04-15 18:03:17
阅读次数:
209
Given a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the original key plus sum of all ...
分类:
其他好文 时间:
2018-04-07 17:34:35
阅读次数:
155
遍历 广度非递归遍历 js const travelWidely=(roots)= { const queue = [...roots]; while (queue.length){ const node = queue.shift(); //打印被遍历的节点 if(node===undefined ...
分类:
编程语言 时间:
2018-04-03 22:03:55
阅读次数:
1350
Sightseeing trip Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 7483 Accepted: 2827 Special Judge Description There is a travel agency in ...
分类:
其他好文 时间:
2018-03-29 20:04:46
阅读次数:
155
题目大意: q次询问 每次询问x 有多少个点对(a,b)满足这两点间存在一条路径使路径上所有边权<=x 思路: 离线下来并查集 并查集时候记一下连通块大小 1 #include<iostream> 2 #include<cstdio> 3 #include<cmath> 4 #include<cst ...
分类:
其他好文 时间:
2018-03-26 19:13:53
阅读次数:
172
`时态`: 即时间和状态,其中时间分为现在时、过去时、将来时、过去将来时; 状态分为四种: 一般、进行、完成、完成进行 | 时间/状态 | |`进行 完成 完成进行`| | | | | | | | |do|am/is/are doing|have done|have been doing| | |d ...
分类:
其他好文 时间:
2018-03-12 17:08:31
阅读次数:
172
A traveler's map gives the distances between cities along the highways, together with the cost of each highway. Now you are supposed to write a progra ...
分类:
其他好文 时间:
2018-03-10 11:47:30
阅读次数:
193
Sightseeing tripTime Limit: 1000MS Memory Limit: 65536KSpecial JudgeDescription There is a travel agency in Adelton town on Zanzibar island. It has de ...
分类:
其他好文 时间:
2018-03-01 13:17:43
阅读次数:
165