Wesley13 Wesley13
3年前
C++ 哈弗曼编码的实现与反编码
include<iostreaminclude<stdlib.hinclude<string.husingnamespacestd;typedefstruct{intweight;intparent,lchild,rchild;in
Stella981 Stella981
3年前
C语言 单链表 Singly Linked List
include<stdio.hinclude<stdlib.hdefineboolintdefinetrue1definefalse0structList{  structNode\ptrNode;  intnLen;};structNode{
Wesley13 Wesley13
3年前
2(4).选择排序_快排(双向循环链表)
include<cstdioinclude<cstringtypedefstructpan{intdata;structpan\next,\prior;}Panda;voidInput(Panda\head,intN){Panda\phead;while
Wesley13 Wesley13
3年前
C++
include<iostreamusingnamespacestd;classGoods{public:Goods()//货物的无参构造{weight0;nextN
Stella981 Stella981
3年前
OpenCV各种绘制调用:线,矩形,圆,椭圆,文字
OpenCV提供了各种绘制接口,可以往图片里画各种东西,这种功能可以为以后在图像上标记一些信息方便调试//drawcall.cpp:定义控制台应用程序的入口点。//include"stdafx.h"include"opencv2/opencv.hpp"int
Wesley13 Wesley13
3年前
C++构造函数调用虚函数的后果
include<iostreamclasscx{public:virtualvoidfunc(){std::cout<<"func"<<std::endl;}cx(){func();//构
Wesley13 Wesley13
3年前
C++之虚函数
<spanstyle"fontsize:18px;"include<iostreamusingnamespacestd;classAA{public:inta;//虚函数virtualvoidsay_
Stella981 Stella981
3年前
Gradle 动态创建Task+依赖+增量构建
defaultTasks'main'defresource_dirnewFile("resources")taskmain{fileTree(resource_dir){include".zip"}.each{Filef
Wesley13 Wesley13
3年前
Qt中使用QToolBox实现抽屉效果
ifndefDRAWER_HPPdefineDRAWER_HPPinclude<QToolBoxinclude<QLayoutinclude"listwidget.hpp"include"listwidgetitem.hpp"classDra
Stella981 Stella981
3年前
C语言 二叉树 BinaryTree
include<stdio.hinclude<stdlib.hdefinebool   intdefinefalse   0definetrue      1structNode{   structNodeleftNode;