-
HQPlayer设置
原帖地址: https://zhuanlan.zhihu.com/p/417390094
erballoon 2022-04-270 0 -
数据结构-线性表-静态链表
定义 #include <stdio.h> #include <stdlib.h> #define MaxSize 10 //静态链表的最大长度 struct Node { //静态链表结构类型的定义 i……
erballoon 2022-04-210 0 -
数据结构-线性表-循环链表
循环单链表 #include <stdio.h> #include <stdlib.h> typedef struct LNode{ //定义单链表结构类型 int data; //每个节点存放一个数据……
erballoon 2022-04-210 0 -
使用注册表关闭开机启动项
win + r 输入 regedit.exe 回车 定位到 计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run TranslucentTB的数值为 C:\ProgramData\T……
erballoon 2022-04-180 0 -
如何安装WePE到U盘
最新版的WePE不好用 安装系统的时候很卡 推荐一个老版本的 百度网盘下载链接 WePE……
erballoon 2022-04-180 0 -
Chrome使用DoH的方法
腾讯云DNSPod Public DNS https://www.dnspod.cn/Products/Public.DNS 选择第三个DoH 将这个地址复制下来 https://doh.pub/dns-query 打开谷歌浏览器的设置 ……
erballoon 2022-04-180 0 -
直接利用剪切板处理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