-
直接利用剪切板处理B站网页视频链接
程序源码 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <windows.h> //将内容写入剪切板 int write……
erballoon 2022-04-170 0 -
将B站上的视频链接转化成适合网页的链接
程序源码 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <windows.h> int write_clipboard(char *str……
erballoon 2022-04-170 0 -
读取剪切板中的字符传递给一个字符串
程序源码 #include <stdio.h> #include <stdlib.h> #include <Windows.h> int get_clipboard(char *str); int main(void){ //……
erballoon 2022-04-170 0 -
利用C++去除字符串中的中文
原始程序 #include <string> #include <iostream> using namespace std; string RemoveChinese(string str){ char strR[100] = ""; ……
erballoon 2022-04-170 0 -
数据结构-线性表-双链表
#include <stdio.h> #include <stdlib.h> typedef struct DNode { int data; struct DNode *prior, *next; }DNode, *DLinklist; ……
erballoon 2022-04-170 0 -
数据结构-线性表-单链表
不带头结点的单链表 #include <stdio.h> typedef struct LNode{ //定义单链表结点类型 int data; //每个结点存放一个数据元素 struct LN……
erballoon 2022-03-250 0 -
数据结构-线性表-顺序表
静态分配 #include <stdio.h> #define MaxSize 10 //定义最大长度 typedef struct{ int data[MaxSize]; //用静态的数组存放数据元素,存储……
erballoon 2022-03-250 2 -
CPP Learning: 函数的默认形参、函数重载
程序源码 #include <iostream> using namespace std; //默认形参必须在非默认形参的后面(右边) #if 0 void print(char ch, int n = 1){ ……
erballoon 2022-03-230 0 -
CPP Learning: 引用变量和引用形参
程序源码 #include <iostream> using namespace std; //无法完成交换的功能 void swap(int x, int y){ cout << "Before: "; cout ……
erballoon 2022-03-230 0 -
常见的递归算法
计算阶乘 //计算阶乘 int factorial(int n){ if (n < 2) return 1; return n*factorial(n-1); } //简化写法 int factorial_1(int n){ ……
erballoon 2022-03-210 0