make it run,make it better,make it fast. https://github.com/liulanghaitun
发布时间: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 .........【阅读全文】
发布时间: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_.........【阅读全文】