本二下期学习笔记
文章平均质量分 58
COST_97
这个作者很懒,什么都没留下…
展开
-
《数据结构教程》(第5版)学习笔记(一)
这是实现顺序栈的各种基本运算的算法:#include <iostream>#include<cstdio>#include<cstdlib>using namespace std;typedef int ElemType;const int MaxSize=100;//声明顺序栈的类型 typedef struct{ ElemType dat...原创 2018-04-25 19:18:42 · 2497 阅读 · 0 评论 -
《数据结构教程》(第5版)李春葆 学习笔记(七)
**图的一些基本运算算法以及DFS,BFS#include <iostream>#include<cstdlib>#include<queue>using namespace std;const int MAXV=5;const int INF=32767;//边结点的类型 typedef struct ANode{ i...原创 2018-05-08 20:08:40 · 3163 阅读 · 0 评论 -
《数据结构教程》(第5版)李春葆 学习笔记(六)
根据一颗二叉树的先序序列和中序序列来构造二叉树,并后序遍历输出#include <iostream>#include<cstdlib>#include<cstring>using namespace std;typedef char ElemType;typedef struct node{ ElemType data; struct node...原创 2018-04-27 16:07:16 · 1701 阅读 · 0 评论 -
《数据结构教程》(第5版)李春葆 学习笔记(五)
这是二叉树的层次遍历算法:#include <iostream>#include<queue>#include<algorithm>using namespace std;const int MaxSize=100;typedef char ElemType;typedef struct node{ ElemType data; struct ...原创 2018-04-27 15:38:35 · 2792 阅读 · 0 评论 -
《TensorFlow机器学习实战指南》学习笔记四
用TensorFlow实现神经网络常见层,代码如下:import tensorflow as tfimport numpy as npsess=tf.Session()#初始化数据data_size=25data_ld=np.random.normal(size=data_size)x_input_ld=tf.placeholder(dtype=tf.float32,shap...转载 2018-05-11 15:50:47 · 441 阅读 · 0 评论 -
《数据结构教程》(第5版)李春葆 学习笔记(四)
一些简单的关于二叉树的算法:#include <iostream>#include<cstdlib>using namespace std;typedef char ElemType;const int MaxSize=100;typedef struct node{ ElemType data; struct node *lchild; struct ...原创 2018-04-26 17:12:56 · 1214 阅读 · 0 评论 -
《数据结构教程》(第5版)李春葆 学习笔记(三)
这是实现二叉树的基本运算算法:#include <iostream>#include<cstdlib>using namespace std;typedef char ElemType;const int MaxSize=100;//二叉树中结点类型BTNode的声明 typedef struct node{ ElemType data; struct n...原创 2018-04-26 16:00:05 · 2884 阅读 · 0 评论 -
《TensorFlow机器学习实战指南》学习笔记三
用TensorFlow实现单层神经网络,并在Iris数据集上进行模型训练。 代码如下:import matplotlib.pyplot as pltimport numpy as npimport tensorflow as tffrom sklearn import datasetsiris=datasets.load_iris()x_vals=np.array([x[0:...转载 2018-05-10 16:54:54 · 316 阅读 · 0 评论 -
《TensorFlow机器学习实战指南》学习笔记二
通过两种不同的激励函数(sigmoid激励函数和ReLU激励函数),创建两个相同结构的单层神经网络。代码如下:import tensorflow as tfimport numpy as npimport matplotlib.pyplot as pltsess=tf.Session()tf.set_random_seed(5)np.random.seed(42)batch_...转载 2018-05-10 15:31:59 · 232 阅读 · 0 评论 -
《TensorFlow机器学习实战指南》学习笔记一
实现一个简单函数 声明a和b为变量,x为占位符。向目标值50优化输出结果。 代码如下:import tensorflow as tfimport numpy as npsess=tf.Session()a=tf.Variable(tf.constant(1.))b=tf.Variable(tf.constant(1.))x_val=10.x_data=tf.placehold...转载 2018-05-10 14:45:47 · 576 阅读 · 0 评论 -
《数据结构教程》(第5版)李春葆 学习笔记(二)
这是实现链栈的各种基本运算的算法:#include <iostream>#include<cstdlib>#include<cstring>using namespace std;typedef char ElemType;//声明链栈的类型 typedef struct linknode{ ElemType data; struct li...原创 2018-04-25 19:46:23 · 1566 阅读 · 1 评论 -
TensorFlow中张量以及操作矩阵的基础知识
《TensorFlow机器学习实战指南》学习笔记import tensorflow as tfimport numpy as npsess=tf.Session()zero_tsr=tf.zeros([4,5])#4行,5列#print(sess.run(zero_tsr))ones_tsr=tf.ones([2,3])#print(sess.run(ones_tsr))#...转载 2018-06-02 16:03:16 · 1597 阅读 · 0 评论