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.
- Host: GitHub
- URL: https://github.com/gabrioliv/cpp-thread-scripts-general
- Owner: GabriOliv
- Created: 2021-02-02T09:32:53.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-05T14:27:54.000Z (over 5 years ago)
- Last Synced: 2025-02-25T21:22:59.402Z (over 1 year ago)
- Topics: brute-force, brute-force-algorithm, cpp, learning, multithreading, programming, pthread, search-algorithm, testing, thread, threads
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 |