会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
孤独的程序员dis1500
知识就是希望
上一页
1
···
40
41
42
43
44
45
46
47
48
···
621
下一页
2024年6月30日
四元数 指针
摘要: 四元数 指针、四元数 指针 四元数 指针 四元数 指针
阅读全文
posted @ 2024-06-30 20:22 lydstory
阅读(18)
评论(0)
推荐(0)
2024年6月29日
c++ 10进制转2进制
摘要: #include <iostream> using namespace std; void fun(int n) { if (n == 0) { cout << 0; return; } int binary[32]; // 存储二进制数的数组 int i = 0; while (n > 0) {
阅读全文
posted @ 2024-06-29 09:58 lydstory
阅读(35)
评论(0)
推荐(0)
2024年6月28日
Kinect for windows sdk
摘要: 一、官方指导 To Create an Unmanaged Application follow these steps for implementing an unmanaged application. 1. include <NuiApi.h> in your source code 2. f
阅读全文
posted @ 2024-06-28 16:50 lydstory
阅读(51)
评论(0)
推荐(0)
圆刚视频采集卡
摘要: https://www.avermedia.cn/
阅读全文
posted @ 2024-06-28 14:34 lydstory
阅读(12)
评论(0)
推荐(0)
strlcpy实现
摘要: #include <iostream> using namespace std; size_t strlcpy(char *dst, const char *src, size_t siz) { char *d = dst; const char *s = src; size_t n = siz;
阅读全文
posted @ 2024-06-28 10:43 lydstory
阅读(10)
评论(0)
推荐(0)
2024年6月27日
disk_everything文件查找
摘要: disk_everything文件查找软件
阅读全文
posted @ 2024-06-27 11:16 lydstory
阅读(15)
评论(0)
推荐(0)
2024年6月26日
openssl 与证书
摘要: openssl 与证书 openssl 与证书 openssl 与证书 openssl 与证书
阅读全文
posted @ 2024-06-26 21:38 lydstory
阅读(14)
评论(0)
推荐(0)
2024年6月25日
mingw
摘要: https://www.msys2.org/ pacman -S mingw-w64-ucrt-x86_64-gcc C:\msys64\ucrt64\bin pacman -S mingw-w64-ucrt-x86_64-gdb
阅读全文
posted @ 2024-06-25 13:33 lydstory
阅读(59)
评论(0)
推荐(0)
2024年6月22日
crc16 linux版本
摘要: #include <stdio.h> #include <stdint.h> // CRC-16-CCITT标准的多项式 #define POLY 0x1021 uint16_t crc16(uint16_t crc, const unsigned char *buffer, size_t len)
阅读全文
posted @ 2024-06-22 23:46 lydstory
阅读(32)
评论(0)
推荐(0)
crc校验
摘要: #include <stdio.h> #include <stdint.h> uint16_t crc16(uint8_t *data, int length) { uint16_t crc = 0xFFFF; for (int i = 0; i < length; i++) { crc ^= da
阅读全文
posted @ 2024-06-22 13:11 lydstory
阅读(26)
评论(0)
推荐(0)
上一页
1
···
40
41
42
43
44
45
46
47
48
···
621
下一页
导航
博客园
首页
新随笔
联系
订阅
管理
公告