摘要: socat 公网ipv6 实现 FiveM 联机 不花一分钱 研究了三天终于研究明白了,首先大家需要测试家里的宽带是否有IPv6 本教程基于Linux实现,因为socat 目前我没找到好用的Windows版本 进入[https://www.test-ipv6.com/index.html.zh_CN 阅读全文
posted @ 2024-01-31 13:51 Happy_Eric 阅读(189) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<malloc.h> #include<queue> using namespace std; #define MAX 10 typedef int E; typedef struct Node{ int nextVex; struct Node 阅读全文
posted @ 2023-12-21 18:51 Happy_Eric 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<malloc.h> #include<string.h> using namespace std; #define MAX 10 #define INF 0; typedef int E; typedef struct GraphMartix{ 阅读全文
posted @ 2023-12-21 18:34 Happy_Eric 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include<malloc.h> using namespace std; typedef int E; typedef struct Node{ E element; struct Node *next; }*node; void initList(no 阅读全文
posted @ 2023-12-21 18:11 Happy_Eric 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #define MAX 10 #include<malloc.h> #include<string.h> #include<stdlib.h> using namespace std; typedef char E; typedef struct Edge{ E 阅读全文
posted @ 2023-12-21 12:53 Happy_Eric 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<malloc.h> #include<string.h> using namespace std; #define MAX 10 #define INF 0; typedef char E; typedef struct GraphMartix 阅读全文
posted @ 2023-12-19 20:29 Happy_Eric 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<malloc.h> #include<queue> #define MAXV 10 using namespace std; typedef char E; typedef queue<int>* Queue; typedef struct N 阅读全文
posted @ 2023-12-18 23:29 Happy_Eric 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio> using namespace std; int main(){ int i,n,m,s,b,c,d,h; while(scanf("%d%d",&n,&m) !=EOF){ if(m==0&&n==0){ return 0; }else if(-39<=n&&n 阅读全文
posted @ 2022-09-11 13:34 Happy_Eric 阅读(31) 评论(0) 推荐(0) 编辑
摘要: system("pause");的头文件是 iostream; scanf的数据都要格式化; 2022.8.29 #include<bits/stdc++.h> 万能头文件,不建议项目使用 2022.09.01 1.使用确定位数的可以用std.h中的int8_t之类的来定义; 2.unsigned 阅读全文
posted @ 2022-08-28 10:58 Happy_Eric 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-07-26 20:11 Happy_Eric 阅读(8) 评论(0) 推荐(0) 编辑