最新 最热

【USACO 2.2】Runaround Numbers

找出第一个大于n的数满足:每一位上的数都不同,且没有0,第一位开始每次前进当前这位上的数那么多位,超过总位数就回到开头继续往前进,最后能不能每个位都到过一次且回到第一位,n<10^9...

2020-06-02
0

【CodeForces 605A】BUPT 2015 newbie practice #2 div2-E - Sorting Railway Cars

http://acm.hust.edu.cn/vjudge/contest/view.action?cid=102419#problem/EDescriptionAn infinitely lon

2020-05-31
0

每日一道python面试题 - Python的函数参数传递

我们都知道,都可以理解是内存中一个对象的“引用”,或者,也可以看似c中void*,通过id来看引用a的内存地址可以比较理解:

2020-05-16
1

1007 Maximum Subsequence Sum

}. A continuous subsequence is defined to be {

2020-03-12
1

leetcode刷题: 002 Add Two Numbers

You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add...

2020-03-12
1

速读原著-TCP/IP(端口号)

前面已经指出过,T C P和U D P采用16 bit的端口号来识别应用程序。那么这些端口号是如何选择的呢?

2020-03-02
1

速读原著-TCP/IP(RFC)

所有关于I n t e r n e t的正式标准都以R F C(Request for Comment)文档出版。另外,大量的R F C并不是正式的标准,出版的目的只是为了提供信息。 R F C的篇幅从1页到2 0 0页不等。每一项都用一个数字来标识,如 RFC 11 2 2,...

2020-03-02
0

LeetCode 165. Compare Version Numbers

题目题意:比较两个版本的大小题解:class Solution {public: int ver1[1005]; int pos1; int pos2; int ver2[1005]; int compareVersion(string version1, string ...

2020-02-14
0

Java网络编程系列之TCP连接状态

1、TCP连接状态LISTEN:Server端打开一个socket进行监听,状态置为LISTENSYN_SENT:Client端发送SYN请求给Server端,状态由CLOSED变为SYN_SENTSYN_RECV:Server端接收Client端发送的SYN请求,并回应ACK给Client端,同时发送SYN请求...

2020-02-12
1