上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: 1.准备ico文件 2.找到你工程里面的.pro文件,在里面添加一句 RC_ICONS = logo.ico 3.qmake一下 阅读全文
posted @ 2020-03-27 15:37 Vzf 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 转载: QML与C++混合编程 Qt QML VideoOutput 显示自定义的 YUV420P 数据流 阅读全文
posted @ 2020-03-25 22:14 Vzf 阅读(180) 评论(0) 推荐(0) 编辑
摘要: Window { id: root visible: true width: 500 height: 500 color: "#535353" Rectangle{ id: dst //(0,0) } ListView{ id: view anchors.fill: parent anchors.m 阅读全文
posted @ 2020-03-22 22:42 Vzf 阅读(2000) 评论(0) 推荐(0) 编辑
摘要: Linux操作系统的启动的主要流程: PC上电后,自动进入实模式(实模式就是寄存器都是16位的,最大寻址范围是1M,最大分段是64KB),从地址0xFFFF0开始执行,这里一般都是ROM-BIOS的地址。 BIOS加载第一个扇区(引导扇区,512字节)的程序(bootsect.s)到绝对地址0x7C 阅读全文
posted @ 2020-03-08 21:16 Vzf 阅读(412) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include #include using namespace std; enum RBTreeColor { RED, BLACK }; template struct RBTreeNode { RBTreeNode(T value, RBTreeColor c) : key(value), color(c), ... 阅读全文
posted @ 2020-01-03 16:12 Vzf 阅读(169) 评论(0) 推荐(0) 编辑
摘要: #pragma once #include <iostream> #include <algorithm> template <typename T> class AVLTreeNode { public: T key; int height; AVLTreeNode* left; AVLTreeNode* right; AVLTreeNode(T value, AVLTreeNode *l, A 阅读全文
posted @ 2019-12-27 15:15 Vzf 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1 #ifndef BSTREE_H 2 #define BSTREE_H 3 4 #include <iostream> 5 6 template <typename T> 7 class BSTreeNode { 8 public: 9 T key; 10 BSTreeNode *left; 11 BSTreeNode *right; 12 BSTreeNode *parent; 13 BST 阅读全文
posted @ 2019-12-26 19:45 Vzf 阅读(430) 评论(0) 推荐(0) 编辑
摘要: #ifndef M_DEQUE_H #define M_DEQUE_H /*************************************** * Description:deque实现,使用场景,类似排队系统,队首和队尾不要频繁的删除和天剑 * Create:2019/12/7 * Au 阅读全文
posted @ 2019-12-17 15:36 Vzf 阅读(250) 评论(0) 推荐(0) 编辑
摘要: #ifndef _M_LIST_H #define _M_LIST_H /*************************************** * Description:list实现 * Create:2019/12/1 * Author:zhangfeng * History: * 2 阅读全文
posted @ 2019-12-03 14:14 Vzf 阅读(230) 评论(0) 推荐(0) 编辑
摘要: /*************************************** * Description:vector实现 * Create:2019/11/22 * Author:zhangfeng * History: * 2019-11-22 搭建基本框架和实现基本功能 * 2019-11 阅读全文
posted @ 2019-11-23 10:44 Vzf 阅读(188) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页