C
matdodo
use knowledge to make the world better.
展开
-
C语言练习-1类型转换
#include int main(){ int a = 5; char c = 'a'; float f = 5.3; double m = 12.65; double result; printf("a + c = %d\n", a+c); // 102 printf("a + c = %c\n", a+c); // f p原创 2014-05-16 17:11:52 · 1195 阅读 · 0 评论 -
C语言练习-2转义字符
#include int main(){ printf("how are u?\n");// 回车 printf("i am fine.\n\n"); printf("how are u? \t");//下一个输出区 printf("i am fine.\n\n"); printf("how are u \n");//光标左移一位开始输出 p原创 2014-05-16 17:30:58 · 1539 阅读 · 0 评论 -
Qt环境下读取csv数据进行矩阵运算
Qt环境下读取csv数据进行矩阵运算1csv.h头文件#ifndef CSV_H#define CSV_H#include #include #include #include #include class CSVParser{private: QList csvLines; QString seperator;public: CSV原创 2016-09-05 21:51:36 · 3395 阅读 · 0 评论 -
串口发送大数组
用stm32f4XX发送采集到的数据时,如果数据量特别大,直接发送一个大数组可能比较占内存。这时候,可以逐个发送数据。最好将大数组定义为全局变量。定义在函数内时,可能导致栈不够深而报错。其模式可以为:uint8_t send_data[6];uint16_t counter = 0;uint32_t bufferd[23238];uint8_t data_ready原创 2016-09-08 01:13:00 · 8203 阅读 · 0 评论 -
[c]一个简单的二叉树
C语言二叉树原创 2017-02-22 14:20:41 · 811 阅读 · 1 评论 -
wrapping a C library with cython
an example to show how to wrap c code for python with cython原创 2017-07-09 12:51:56 · 468 阅读 · 0 评论 -
[c] windows下编译boost 1.55.0
首先下载boost源码:https://dl.bintray.com/boostorg/release/将压缩文件解压, 解压后文件夹路径为Acd A/boost_1_55_0mkdir build.setupcd tools\buildboostrap.bat mingwb2 install --prefix="A\build.setup\"将"A\build.set原创 2017-10-14 09:16:34 · 694 阅读 · 0 评论 -
C 语言实现的哈夫曼编码huffman coding
C 语言实现的哈夫曼编码huffman coding项目地址项目地址https://github.com/ludlows/chuffman编码操作需要给个文本作为输入,输出 密码本 和 二进制编码解码操作需要密码本和二进制编码, 输出 解码后的文本。...原创 2019-04-23 07:47:08 · 1100 阅读 · 0 评论