2019年6月1日

Qt获取本机ip

摘要: 过滤回环地址和虚拟网卡地址 https://m.aliyun.com/yunqi/articles/272274 阅读全文

posted @ 2019-06-01 20:16 年少小五郎 阅读(357) 评论(0) 推荐(0) 编辑

2019年5月18日

Qprocess

摘要: https://www.cnblogs.com/wang1994/p/5943154.html 阅读全文

posted @ 2019-05-18 10:13 年少小五郎 阅读(90) 评论(0) 推荐(0) 编辑

2019年5月11日

QTcpSever & QTcpSocket

摘要: 一、tcp客户端 建立套接字socket 连接信号与槽函数 然后 socket->connectToHost(); 设置要连接的ip和port 新的连接来之时;先掉用incomingConnection(qintptr handle)处理,之后再调用newConnect() incomingConn 阅读全文

posted @ 2019-05-11 15:32 年少小五郎 阅读(263) 评论(0) 推荐(0) 编辑

2019年5月3日

在linux搭建操作系统实战的学习环境

摘要: Linux中操作系统模拟的环境搭建 1.前期需要的工具 bochs(虚拟机),实际上就是操作系统模拟器 nasm(intel 汇编器),这里不采用as(gas GNU)因为后期都是用的intel 汇编。 在window上搭建的Linux虚拟机 g++编译器 2. 环境的搭建 在window上搭建的L 阅读全文

posted @ 2019-05-03 16:49 年少小五郎 阅读(816) 评论(0) 推荐(0) 编辑

2019年5月1日

汇编中各寄存器的作用

摘要: 汇编中各寄存器的作用 https://www.cnblogs.com/zimmerk/articles/2520011.html 阅读全文

posted @ 2019-05-01 17:01 年少小五郎 阅读(256) 评论(0) 推荐(0) 编辑

1.0操作系统的初次尝试

摘要: https://www.cnblogs.com/777777-716/p/5003964.html 参考上述文档 使用Oracle VM VisualBox来启动编写的操作系统,使用TINIX.IMG软盘来引导操作系统的启动 一、首先下载Oracle VM VisualBox软件,官方地址:http 阅读全文

posted @ 2019-05-01 10:18 年少小五郎 阅读(252) 评论(0) 推荐(0) 编辑

2019年4月30日

摘要: 阅读全文

posted @ 2019-04-30 21:46 年少小五郎 阅读(79) 评论(0) 推荐(0) 编辑

霍夫曼树

摘要: 阅读全文

posted @ 2019-04-30 21:43 年少小五郎 阅读(84) 评论(0) 推荐(0) 编辑

树2

摘要: 1 #include 2 #include 3 #include "BTree.h" 4 5 typedef struct _tag_BTree TBTree;//BTree.c 6 struct _tag_BTree 7 { 8 int count; 9 BTreeNode* root; ... 阅读全文

posted @ 2019-04-30 21:39 年少小五郎 阅读(126) 评论(0) 推荐(0) 编辑

摘要: 1 #include 2 #include 3 #include "GTree.h" 4 #include "LinkList.h" 5 6 7 typedef struct _tag_GTreeNode GTreeNode; 8 struct _tag_GTreeNode 9 { 10 GTreeDat... 阅读全文

posted @ 2019-04-30 21:20 年少小五郎 阅读(162) 评论(0) 推荐(0) 编辑

导航