Month: November 2018

「Binary Tree」Extension

在普通的二叉树(链式结构)上增加了一些功能 bitree.h typedef int Status; typedef int TElemType; typedef struct BiTNode { TElemType data; struct BiTNode *lchild, *rchild; } BiTNode, *BiTree; Status InitBiTree(BiTree *T); Status...

「Editor」

Assuming that the string is initially empty, the basic operations that can be performed are append/insert/delete/replace, as described below: append: Appends a string of the...