简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
send recv函数ssize_t send(int sockfd,const void* buf,size_t nbytes,int flags);ssize_t recv(int sockfd,void* buf,size_t nbytes,int flags);之前一直在linux下使用read和write函数,MSG_OOB:TCP只有紧急模式,没有带外数据MSG_DONTWAIT:调用
zoj 1610思维:线段区间[1,8000],颜色区间[0,8000]记录输入.找每个点的最后一个覆盖点就行了然后算多少个颜色段#include <iostream>#include <string.h>using namespace std;const int maxn =1e4;int n;int e[maxn][3];int co...
POJ 1661带权并查集模板并查集+统计一个点集的大小#include <iostream>using namespace std;const int maxn = 3e4+10;int n,m;int prv[maxn];int tot[maxn]; // tot记录以点i作为顶点的个数int find(int x) {if ( prv[x] == x ...
HDU 1272无向图用并查集判断是否成环.坑点:仅仅考虑了根节点相同(有回路)的情况,而忽略了有多个连通分量,也是不满足 任意两个房间有且仅有一条路径相同#include <iostream>#include <string.h>using namespace std;const int maxn = 1e5+10;int pre[maxn];i...