10 2018 档案
摘要:TensorFlow是Google推出的深度学习开源框架。相比于Keras、Caffe等框架,TensorFlow在GitHub上的star数量、fork数量、contributor数量都一骑绝尘。,Tensor...
阅读全文
摘要:指针:指针变量,可以用用来引用数组,对象,任何变量的地址。指针中保存的是地址,用*(解引运算符)来访问内存中的数据指针的使用:#include #include #include #include // 将...
阅读全文
摘要:2.排序算法:输入: 一个数组1. 冒泡排序2. 选择排序 (每次选择剩余序列中最小的数)#include #include using namespace std;const int SIZE_LEN=10;...
阅读全文
摘要:面向对象思想:1.string类:C字符串:将字符串看作以‘/0’结尾的字符数组string类: 处理字符串2. 使用string类对象:// 字符串初始化 string s1 = "Welcome to c++...
阅读全文
摘要:使用级数计算圆周率#include #include #include using namespace std;float m(int); int main(int argc, char *argv[]){ co...
阅读全文