二叉树代码实现

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define MAXWORD 100
struct tnode
{
    struct tnode*left ;
    struct tnode*right ;
    int count ;
    char*word ;
};
struct tnode*addtree(struct tnode*root , char*w)
{
    int cond ;
    if(root == NULL)
    {
        root = (struct tnode*)malloc(sizeof(struct tnode));/*书上把这一步封装成了一个函数*/
        root->word = strdup(w);
        root->count = 1 ;
        root->left = NULL;
        root->right = NULL;
    }
    else if((cond = strcmp(root->word,w)) == 0)
        root->count++ ;
    else if(cond > 0)
        root->left = addtree(root->left,w);
    else
        root->right = addtree(root->right,w);
    return root;
}
void treeprint(struct tnode*root)
{
    if(root != NULL)
    {
        treeprint(root->left);
        printf("%4d %s\n",root->count,root->word);
        treeprint(root->right);
    }
}
int main()
{
    struct tnode*root = NULL ;
    char* a = "now" ;
    root = addtree(root,a) ;
    char* b = "is" ;
    root = addtree(root,b) ;
    char* c = "the";
    root = addtree(root,c);
    char* d ="time";
    root = addtree(root,d);
    char* e ="for";
    root = addtree(root,e);
    char* f = "all";
    root = addtree(root,f);
    char* g = "good";
    root = addtree(root,g);
    char* h = "men";
    root = addtree(root,h);
    char* i = "to";
    root = addtree(root,i);
    char* j = "come";
    root = addtree(root,j);
    char*k = "to";
    root = addtree(root ,k);
    char*l = "the";
    root = addtree(root,l);
    char*m = "aid";
    root = addtree(root,m);
    char*n = "of";
    root = addtree(root,n);
    char*o = "their";
    root = addtree(root,o);
    char*p = "party";
    root = addtree(root,p);
    treeprint(root);
    system("pause");
    return 0 ;
}

测试样本为:now is the time for all good men to come to the aid of their party

数形如下:因为这个在线工具https://www.cs.usfca.edu/~galles/visualization/BST.html

                  设置的输入框中最多只能输入4个字符,所有their和party只能是thei和part

测试结果:

动态演示如下:

二叉树动态演示

当然,我上面代码用的main函数很low,我们完全可以使用getword()函数来替代。时隔三日,我来更新:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define MAXWORD 100
struct tnode
{
    struct tnode*left ;
    struct tnode*right ;
    int count ;
    char*word ;
};
struct tnode*addtree(struct tnode*root , char*w)
{
    int cond ;
    if(root == NULL)
    {
        root = (struct tnode*)malloc(sizeof(struct tnode));/*书上把这一步封装成了一个函数*/
        root->word = strdup(w);
        root->count = 1 ;
        root->left = NULL;
        root->right = NULL;
    }
    else if((cond = strcmp(root->word,w)) == 0)
        root->count++ ;
    else if(cond > 0)
        root->left = addtree(root->left,w);
    else
        root->right = addtree(root->right,w);
    return root;
}
void treeprint(struct tnode*root)
{
    if(root != NULL)
    {
        treeprint(root->left);
        printf("%4d %s\n",root->count,root->word);
        treeprint(root->right);
    }
}

int getword(char*word,int lim)
{
    char* w = word;
    int c ;
    int getchar(void);
    void ungetch(int);
    while(isspace(c = getchar()))
        ;
    if(c != EOF)
        *w++ = c ;
    else if(!isalpha(c))
    {
        *w = '\0';
        return c;
    }
    for(; --lim >0 ; w++)
    {
        if(!isalnum(*w = getchar()))
        {
            ungetch(*w);
           break;
        }
    }
    *w = '\0';
    return word[0];
}
int main()
{
    struct tnode* root = NULL;
    int w ;
    char word[MAXWORD];
    while((w = getword(word,MAXWORD))!=EOF)
    {
        root = addtree(root,word);
        treeprint(root);
        system("pause");
    }
    return 0 ;
}

测试结果如下:

在C语言,我们可以使用结构体来实现二叉树的数据结构。这里提供一个基本的二叉树节点结构体定义和插入操作的示例: ```c #include <stdio.h> #include <stdlib.h> // 定义二叉树节点结构 typedef struct TreeNode { int data; // 节点值 struct TreeNode* left; // 左子树指针 struct TreeNode* right; // 右子树指针 } TreeNode; // 创建新节点 TreeNode* createNode(int value) { TreeNode* newNode = (TreeNode*)malloc(sizeof(TreeNode)); if (!newNode) { printf("Memory allocation failed.\n"); return NULL; } newNode->data = value; newNode->left = NULL; newNode->right = NULL; return newNode; } // 插入节点到二叉树 void insertNode(TreeNode** root, int value) { if (*root == NULL) { // 如果根节点为空,创建新节点作为根 *root = createNode(value); } else { if (value < (*root)->data) { // 向左子树递归插入 insertNode(&(*root)->left, value); } else if (value > (*root)->data) { // 向右子树递归插入 insertNode(&(*root)->right, value); } } } // 示例用法 int main() { TreeNode* root = NULL; insertNode(&root, 50); // 插入50 insertNode(&root, 30); insertNode(&root, 20); insertNode(&root, 40); insertNode(&root, 70); insertNode(&root, 60); // 输出二叉树的节点值(仅做示例,实际应用可以添加遍历函数) // printTree(root); return 0; } ``` 在这个例子,`insertNode` 函数用于将新的值插入到正确的子树位置,而`main`函数展示了如何使用这个功能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值