検索結果 1 件
- 8年前
- フォーラム: C言語何でも質問掲示板
- トピック: AVL木の実装で困っています
- 返信数: 27
- 閲覧数: 9289
Re: AVL木の実装で困っています
#include<stdio.h> #include<stdlib.h> #include<math.h> #include<time.h> #define VISION 50 #define AVL_BALANCED 0 #define AVL_LEFT 1 #define AVL_RIGHT 2 typedef struct node { struct node *left; struct node *right; struct node *parent; int element; int balance; }Node; typedef struct { Node *root; }Tre...