学习日记

Posted iggbond

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习日记相关的知识,希望对你有一定的参考价值。

每周学习日记


正文

  • 这周学习了二叉树的定义与输入输出方法,第一次接触,虽然入手不是很明白,后面慢慢懂得了它的思路。

定义

typedef struct Node 
{	
    TElemType data; 
    struct Node * lchild, * rchild;
} BiTNode,*BiTree;

输入(先序)

void create(BiTree *root)
{
    char sr;
    scanf("%c",&sr);
    if(c==‘#‘) root = NULL;
    else
    {
        *root=(BiTNode*)malloc(sizeof(BiTNode));
        (*root)->data=sr;
        create(&((*root)->lchild);
        create(&((*root)->rchild);
    }
}

输出(叶子)

void PrintLeaf(BiTree root)
{   
	if (root==NULL) return;
	else
	{   
	    if (root->lchild==NULL&&root->rchild==NULL)		
	    printf("%c",root->data);
		PrintLeaf(root->lchild);
		PrintLeaf(root->rchild);
	}
}

结束语!

明天会更好!.

以上是关于学习日记的主要内容,如果未能解决你的问题,请参考以下文章

Python学习日记 3/10

Python 学习日记 第九天

Python 学习日记第七篇 -- 函数

学习日记:Python爬虫-1

C语言学习日记8

学习日记(3.5)