Chinaunix首页 | 论坛 | 博客
  • 博客访问: 257451
  • 博文数量: 49
  • 博客积分: 110
  • 博客等级: 民兵
  • 技术积分: 510
  • 用 户 组: 普通用户
  • 注册时间: 2013-01-13 00:59
个人简介

make it run,make it better,make it fast. https://github.com/liulanghaitun

文章分类

全部博文(49)

文章存档

2023年(1)

2022年(2)

2020年(4)

2019年(4)

2017年(15)

2016年(3)

2014年(3)

2013年(14)

发布时间:2019-12-18 16:13:25

#include<stdio.h>#include<malloc.h>struct node{    int value;    struct node *next,*prev;};static int init_value[5]={1,2,3,4,5};struct node* createDoublyLinked(int *init_value,int postion,int length){    if(length == 0) return NULL;    struct .........【阅读全文】

阅读(983) | 评论(0) | 转发(0)

发布时间:2017-10-29 21:18:47

点击(此处)折叠或打开#include <stdlib.h>#include <stdio.h>#define height(avl_node) (avl_node ? avl_node->avl_height : -1)#define max(left,right) (left > right ? left : right)typedef struct avl_.........【阅读全文】

阅读(2076) | 评论(0) | 转发(0)

发布时间:2017-10-27 22:13:34

AVL树定义:    AVL树是最早提出的自平衡二叉树,在AVL树中任何节点的两个子树的高度最大差别为一,所以它也被称为高度平衡树。    AVL树得名于它的发明者G.M. Adelson-Velsky和E.M. Landis。AVL树种查找、插入和删除在平均和最坏情况下都是O(log n),    增加和删除可能需要通过一次或.........【阅读全文】

阅读(1084) | 评论(0) | 转发(0)

发布时间:2017-10-22 10:12:46

点击(此处)折叠或打开#include #include struct node {    int index;    struct node* next;};struc.........【阅读全文】

阅读(651) | 评论(0) | 转发(0)

发布时间:2017-10-20 18:38:45

点击(此处)折叠或打开#include <stdio.h>#include <stdlib.h>typedef struct tree{    int data;    struct tree *left;    str.........【阅读全文】

阅读(611) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册