本文分类:news发布日期:2025/11/23 17:33:43
打赏

相关文章

1088. Rational Arithmetic (20)

1088. Rational Arithmetic (20)#include <iostream>using namespace std;long long getsame(long long a, long long b) {if(b != 0){return getsame(b, a % b);}else{return a;} }void simplify(long long &am…

1087. All Roads Lead to Rome (30)

1087. All Roads Lead to Rome (30)#include <iostream> #include <vector> #include <string.h>using namespace std;struct node {int next, cost; };vector<node> v[27000]; vector<int…

1091. Acute Stroke (30)

1091. Acute Stroke (30)#include <iostream> #include <queue>using namespace std;struct node {int x, y, z; };queue<node> q; int flag[1300][130][70], m, n, l, vis[1300][130][70], bfscoun…

解码UDP

UDP 协议基础认知 UDP(User Datagram Protocol,用户数据报协议)是传输层核心协议之一,基于 IP 协议实现跨网络主机进程间的无连接数据传输。它面向事务提供简单通信服务,不保证数据交付、有序性和重复防护,也不提…

手机版浏览

扫一扫体验

微信公众账号

微信扫一扫加关注

返回
顶部