An open API service indexing awesome lists of open source software.

https://github.com/gabrioliv/cpp-thread-scripts-general

Algorithms implemented in C++ with Threads.
https://github.com/gabrioliv/cpp-thread-scripts-general

brute-force brute-force-algorithm cpp learning multithreading programming pthread search-algorithm testing thread threads

Last synced: 1 day ago
JSON representation

Algorithms implemented in C++ with Threads.

Awesome Lists containing this project

README

          

# Thread Scripts in C++

Algorithms implemented in C++ with Threads.

---

### Compilation

```sh
g++ -pthread script_name.cpp
```

---

| Code | Function |
| :---- | :---- |
| multiply_matrices.cpp | Multiply 2 Square Matrices |
| perfect_number.cpp | List Perfect Number between range |
| prime_number_find.cpp | List Prime Numbers between range |