shiningrise 发布的文章
shiningrise结构体定义运算符
struct Node { int p, n; bool operator < (Node t) const { return p > t.p; } }e[25];
结构体
#include<bits/stdc++.h> using namespace std; struct student{ //成员变量 string name; int x,y; //无参数构造函数 student(){} //带参数...
第一章 C++语言入门
板书1000:入门测试题目 int cin cout2060:【例1.1】计算机输出 cout2061:【例1.2】梯形面积 float printf1003:对齐输出 printf1004:字符三角形 ...
移动云MAS短信发送代码
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http.Headers; using System.Security.Cryp...
树的数据结构定义
#include<bits/stdc++.h> using namespace std; const int m = 10; //树的度 typedef struct node; typedef node *tree; struct node { cha...
查询 ASP.NET Core 版本命令
# 查看已安装的 .NET SDK 版本(包含 ASP.NET Core 相关) dotnet --list-sdks # 查看已安装的 .NET 运行时版本(包含 ASP.NET Core 运行时) dotnet --list-runtimes
查内网linux服务器出口IP
查内网linux服务器出口IPcurl ipinfo.io/ipcurl ifconfig.me curl icanhazip.com curl ipinfo.io/ip curl checkip.amazonaws.com
未命名文章
# deepseek本地部署简要教程## 安装ollama访问:https://ollama.com/![](https:...
打印栈的出栈序列
#include<bits/stdc++.h> using namespace std; vector<int> ppp; int n; //vector<int> temp; void dfs(int index,stack<int> s,v...
最新回复