摘要: 预览 参考书籍:浙大概率论与数理统计, 俄罗斯的概率教材, 概率-施利亚耶夫著作, 统计学及应用-sarah boslaugh著作 统计学分类: 描述统计学:展示数据, 描述数据的集中和离散程度 推断统计学:根据样本数据推断总体的数据特征 统计趋势: 集中趋势, 离散趋势 统计学应用: 有数据, 就有统计分析的需求 把握要点: 概率论... 阅读全文
posted @ 2019-05-24 15:47 binyang 阅读(1535) 评论(0) 推荐(0) 编辑
摘要: 测试文档 测试code 哈哈 ![img](file:///C:/Users/bin/Pictures/Camera Roll/15.png) 阅读全文
posted @ 2019-05-24 02:27 binyang 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 测试文档 测试code 哈哈 ![img](file:///C:/Users/bin/Pictures/Camera Roll/15.png) 阅读全文
posted @ 2019-05-24 02:26 binyang 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 预览 参考书籍:浙大概率论与数理统计, 俄罗斯的概率教材, 概率-施利亚耶夫著作, 统计学及应用-sarah boslaugh著作 统计学分类: 描述统计学:展示数据, 描述数据的集中和离散程度 推断统计学:根据样本数据推断总体的数据特征 统计趋势: 集中趋势, 离散趋势 统计学应用: 有数据, 就有统计分析的需求 把握要点: 概率论... 阅读全文
posted @ 2019-05-24 00:10 binyang 阅读(770) 评论(0) 推荐(0) 编辑
摘要: 树的遍历 1 class Node: # This is the Class Node with constructor that contains data variable to type data and left,right pointers. 2 def __init__(self, data): 3 self.data = data 4 ... 阅读全文
posted @ 2019-05-21 01:06 binyang 阅读(173) 评论(0) 推荐(0) 编辑
摘要: classNode:# This is the Class Node with constructor that contains data variable to type data and left,right pointers.def __init__(self, data):self.data = dataself.left... 阅读全文
posted @ 2019-05-21 00:31 binyang 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 测试代码表现 1 def depth_of_tree(tree): #This is the recursive function to find the depth of binary tree. 2 if tree is None: 3 return 0 4 else: 5 depth_l_tree = depth_of_tree(tr... 阅读全文
posted @ 2019-05-21 00:20 binyang 阅读(288) 评论(0) 推荐(0) 编辑
摘要: def display(tree):#In Order traversal of the treeif tree isNone: returnif tree.left isnotNone:display(tree.left)print(tree.data)if tree.right isnotNon... 阅读全文
posted @ 2019-05-21 00:14 binyang 阅读(363) 评论(0) 推荐(0) 编辑
摘要: def depth_of_tree(tree): #This is the recursive function to find the depth of binary tree. if tree is None: return 0 else: depth_l_tree = depth_of_... 阅读全文
posted @ 2019-05-20 23:51 binyang 阅读(110) 评论(0) 推荐(0) 编辑
摘要: def is_full_binary_tree(tree): # This functions returns that is it full binary tree or not? if tree is None: return True def main(): # Main func for t... 阅读全文
posted @ 2019-05-20 23:38 binyang 阅读(399) 评论(0) 推荐(0) 编辑