938664978
938664978
全部文章
C
AI(18)
algorithm(18)
computer-vision(15)
cuda(2)
database(1)
fortran(1)
hardware(3)
java(1)
leetcode(39)
MathModeling(19)
matlab(5)
other(8)
python(68)
robotics(13)
web-development(4)
未归档(5)
归档
标签
去牛客网
登录
/
注册
938664978的博客
全部文章
/ C
(共6篇)
C语言练习-1类型转换
#include <stdio.h> int main() { int a = 5; char c = 'a'; float f = 5.3; double m = 12.65; double result; printf("a...
2020-07-14
0
498
C语言练习-2转义字符
#include <stdio.h> int main() { printf("how are u?\n");// 回车 printf("i am fine.\n\n"); printf("how are u? ...
2020-07-14
0
439
Qt环境下读取csv数据进行矩阵运算
Qt环境下读取csv数据进行矩阵运算 1. 读取csv数据 csv.h头文件 #ifndef CSV_H #define CSV_H #include <QString> #include <QTextStream> #include <QStringLis...
2020-07-13
0
977
[c]一个简单的二叉树
使用C语言练练手避免手生。 文件主要有三个: bst.h, bst.c, test_bst.c 文件bst.h typedef enum {FALSE=0, TRUE=1} bool; /* * Define a node structure. */ typedef struct...
2020-07-13
0
488
wrapping a C library with cython
A. look at which function we need to add python module. /* * Copyright (c) 2012-2017, Jyri J. Virkki * All rights reserved. * * This file i...
2020-07-13
0
497
[c] windows下编译boost 1.55.0
首先下载boost源码:https://dl.bintray.com/boostorg/release/ 将压缩文件解压, 解压后文件夹路径为A cd A/boost_1_55_0 mkdir build.setup cd tools\build boostrap.bat gcc b2 ...
2020-07-13
0
560