Skip to content
This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
/ ds-algorithms Public archive

Some scripts for "ds and algorithms" uni course

Notifications You must be signed in to change notification settings

xelanac/ds-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Data structures and algorithms scripts

In this repository you can find the following data structures:

  • Stack;
  • List;
  • Linked List (there is another with "reverse" function);
  • Tree: Which operation can you choose on this?
    • Insert a new node;
    • Delete a node (this functionality works on ROOT only when it is the last one node remaining in tree);
    • Find minimum and maximum;
    • In-Order print;
    • Pre-Order print;
    • Post-Order print;
    • Decreasing order print;;

Into recursion script you can find these exercises:

  • Calculation of the factorial;
  • Check if a word is or not a palindrome;
  • Peaks count;
  • Find a char in a string;
  • Find the minimum value into an array;