打卡第四十五天
程序员文章站
2022-07-01 10:56:19
...
今天是我打卡的第四十六天了!
今天上午的话看了java的视频,文件流看完了,但是那个视频不全,只是java的基础,今晚上机的时候下了一套新的视频。包含了线程,进程这类的。这周吧java基础过掉,然后主攻数据结构,高数,离散。当然我现在也在着手复习。。。相当于是预习。。。加油吧!
晚上的话研究了下数据结构的二叉树。写了一段建立二叉树的代码!
二叉树代码示例:
// dobleTree.cpp: 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<stdio.h>
#include<Windows.h>
#include<stdlib.h>
typedef char TreeType;
typedef struct Tree
{
TreeType data;
struct Tree * leftchild;
struct Tree * rightchild;
}TreeElement;
void InsertTreeNode(TreeElement * p)
{
TreeType ch;
scanf_s("%c", &ch);
if (ch == ' ')
{
p = NULL;
}
else
{
p = (TreeElement *)malloc(sizeof(TreeElement));
p -> data = ch;
InsertTreeNode(p->leftchild);
InsertTreeNode(p->rightchild);
}
}
void main()
{
TreeElement root;
InsertTreeNode(&root);
system("pause");
}
这段代码挺简单的,写的有点久了,不怎么熟练密度看看书上的代码,还有小甲鱼的视频。
今天体考,60分踩线过。。。今天去了校史馆,感觉及时走个过场。。
我说所有的酒都不如你!
晚安,我的全世界!
明天见!
下一篇: 南北朝有个善人,怕虱子饿死竟然不吃菜心?