排序
【C】质数(素数)判断函数
代码片段 int isPrime(int x){ //一开始让ret=1,默认是素数 int ret = 1; int i; if (x==1||x==0){ //0和1不是素数 ret = 0; return re...
【C】if-else if-else和switch-case
if-else if-else #include<stdio.h> int main() { int type=0; scanf('%d',&type); if (type==1) printf('早'); else if (type==2) printf('中'); else if (type==3) printf('晚'); else...
【C】复合赋值和递增递减
复合赋值 5个算术运算符,+-*/%,可以和赋值运算符“=”结合起来,形成复合赋值运算符“+=”、“-=”、“/=”和“%=” total += 5; total = total + 5; 注意两个运算符中间不要有空格 total += ...
【数据结构】邻接多重表C++实现(含DFS,BFS,弗洛伊德算法)
#include <iostream> using namespace std; // 边(Edge)节点 // T这个自定义类型就是弧上数据的类型,也就是info的类型。如果边上要存权值,可以设置为int,double等等 template<typena...
【C++】自定义泛型Vector类
代码 #prlagma once #include <iostream> using namespace std; template <typename T> class MyVector { private: // 指向动态分配的数组 T* base; // 容器容量 int capacity; // 当前元...
【C】第一个C语言程序
代码 #include<stdio.h> int main() { printf('Hello World!\n'); printf('12+34=%d\n', 12+34); return 0; } ChatGPT的解释 这段代码是用C语言编写的简单程序,用来展示基本的输出和数学运...









