elrejunte
elrejunte copied to clipboard
Notebook y solucionarios del Equipo El Rejunte de UTN-FRSF
# Changes proposal: Put LIS inside of a struct with parameterized data type.
## Catalan Numbers Number of BST of N nodes = Catalan(N) Number of Binary Trees of N nodes = Catalan(N)*(N!) ## Stirling Numbers * Add formula and meaning for Stirling...
Implement a struct with LIS, and parametrized data type.
There is an alternative implementation used in at coder that runs several times faster. ```cpp #include #define ALL(v) (v).begin(), (v).end() #define RALL(v) (v).rbegin(), (v).rend() #define SZ(v) ((int) (v).size()) #define FOR(i,...
Refactor CRT and Extended Euclid Now both codes are on the same file Added test to both codes
# Changes proposal * Change line representation to point + vector * Refactor segment intersection, check intersection with integers