Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Social network project for school using AVL tree inside of another AVL

License

Notifications You must be signed in to change notification settings

Mishco/Social_network_avl_tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Social network implemented by AVL tree

School project (Data structures and algorithms) using AVL tree structure.

Technology stack

  • C language
  • AVL inside in AVL

using AVL tree

Description

  • We save people and his/her like on pages
  • Like, Dislike, Init, Search in time
  • Tree balancing after insert

Code example

/*AVL tree node*/
typedef struct page {
    char *name; //nazov stranky
    struct page *subname; // mena uzivatelov ktori likeli stranku, teda dalsi AVL strom 
    struct page *left;
    struct page *right;
    int height;
}page;

Licence

MIT

About

Social network project for school using AVL tree inside of another AVL

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages