会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Blithe-Chiang
首页
联系
管理
上一页
1
2
3
2020年12月7日
DBeaver设置表格主键
摘要: DBeaver设置表格主键 在使用DBeaver创建表的时候,看起来好像不能设置主键的样子,然后我就在上网找了一些时间。然后找到了一篇文章,https://github.com/dbeaver/dbeaver/wiki/New-Table-creation#primary-key-creation
阅读全文
posted @ 2020-12-07 12:02 Blithe-Chiang
阅读(12343)
评论(0)
推荐(1)
2020年10月17日
哈夫曼树的构建算法之找出两个最小的子树的下标
摘要: struct Node { int weight; int parent; int lChild; int rChild; }; typedef struct Node NODE; typedef NODE *HuffmanTree; int selector(HuffmanTree HT, int
阅读全文
posted @ 2020-10-17 22:31 Blithe-Chiang
阅读(383)
评论(0)
推荐(0)
2020年10月4日
模式串 从 0 开始的KMP算法
摘要: /** * 看了 b站视频 BV1jb411V78H 对KMP有了一点理解,然后我写了这个代码 * 这个代码和视频里面的有一点不同,字符串是从 0 开始的,而不是从1 开始的 * 希望能够帮到学习KMP的人 */ #include <stdbool.h> #include <malloc.h> #i
阅读全文
posted @ 2020-10-04 08:14 Blithe-Chiang
阅读(437)
评论(0)
推荐(0)
2020年9月1日
8086汇编 显示时间 --- 王爽 《汇编语言》实验14
摘要: ; 在某行显示日期,时间 ; 代码里面我写死成12行了 assume cs:code code segment cmos_arr: db 9, 8, 7, 4, 2, 0 char_arr: ; 这个第一个' ' 空格其实是一个占位置用的 db ' ', '/', '/', ' ', ':', ':
阅读全文
posted @ 2020-09-01 16:28 Blithe-Chiang
阅读(914)
评论(0)
推荐(1)
上一页
1
2
3