Skip to content

Trying to understand what happens under the hood in c. (Reversing binary trees)

Notifications You must be signed in to change notification settings

denimyftiu/learning-c-again

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Back in time to learn C.

Trying to understand the assembly created.

   gcc bintree.c
   objdump -M intel -d a.out

Browse the code.

    ctags -R .
    vim bintree.c

Basic structures.

// pointer to a tree node.
typedef struct tnode *Treeptr;

// A tree node.
typedef struct tnode {
    char *word;
    int  count;
    Treeptr left;
    Treeptr right;
} Treenode;

About

Trying to understand what happens under the hood in c. (Reversing binary trees)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages