21.10.29.学习日记

Posted 空_白

tags:

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

21.10.29

  • 学习了Django 中的contentType 框架,其核心是连表
  • 学习了MongoDB数据库

学习日记

每周学习日记


正文

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

定义

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);
	}
}

结束语!

明天会更好!.

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

学习日记-2016.3.31

Python学习日记之记录

ajax --- 4.5 学习日记

Storm学习日记

学习日记--2016.3.30

学习日记