marianajo / learning-cs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Learning Computer Science

This repository carries code and other resources I use to learn Computer Science.

Parallel Computing

Parallel programming and Distributed Computation. Things like OpenMP and PThreads.

To run OpenMP code:

gcc -fopenmp <source_file> -o <output_file>

To run PThreads code:

gcc -lpthread <source_file> -o <output_file>

Algorithms

Basic and classic algorithms in CS.

About

License:MIT License


Languages

Language:Jupyter Notebook 75.2%Language:C 17.1%Language:Python 7.8%