Skip to content

arthur-es/aed2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning C in College (AED2 @ UFG) ✨

This repo is only meant to expose what I'm currently learning

What I've learned so far:

Trees

  • How to insert data in a tree (v1)
  • How to print data from a tree (v1)
    • In-order
    • Pre-order
    • Pos-order
  • A better way to insert data in a tree (v2)
  • How to get the size of the tree (v3)
  • How to search for a value in a tree (v4)
  • How to delete an item from a tree (TBD)
    • How to delete a leaf (node that has no children)
    • How to delete a middle node (that has only one child)
    • How to delete a node with two children

Useful commands:

To compile:

gcc nameOfTheFileToCompile.c -o outputFileName

To execute:

outputFileName

References:

Docs about Structures in C/C++ Árvores em C (Portuguese Lessons about Trees in the C Language)

Tools

Markup Editor

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages