发布时间:2014-06-24 19:41:57
>>> mtest = ('one','two', 'three')>>> mtest('one', 'two', 'three')>>> mtest[0]'one'>>> two_test = ("one_two_three")>>> two_test[0]'o'>>> num_three = ("one_two_three"l,)SyntaxError: invalid syntax>>> num_three = ("one_two_three",)>>> num_three[0]'one_two_three'>>> d = 'one_two_thre',>.........【阅读全文】
发布时间:2014-06-20 10:35:05
在计算机科学中,二叉树是每个节点最多有两个子树的树结构。通常子树被称作“左子树”(left subtree)和“右子树”(right subtree)。二叉树常被用于实现二叉查找树和二叉堆。二叉树的每个结点至多只有二棵子树(不存在度大于2的结点),二叉树的子树有左右之分,次序不能颠倒。二叉树的第i层至多有个结点;深度为k的.........【阅读全文】