https://github.com/kamilhan-karaismailoglu/tree-fork
In this project, the tree height will be given as a command line argument. According to the incoming argument, files with txt extension will be created for each node in the structure to be created. The filenames will be determined by the pid the nodes have. Random values for leaf nodes will be generated and stored in the files created. Starting from the leaves, while going up, the values in the child nodes will be collected and transferred to the parent node. There is also a makefile in the project. This project was written for System Programming lecture.
https://github.com/kamilhan-karaismailoglu/tree-fork
c fork fork-tree makefile
Last synced: 8 months ago
JSON representation
In this project, the tree height will be given as a command line argument. According to the incoming argument, files with txt extension will be created for each node in the structure to be created. The filenames will be determined by the pid the nodes have. Random values for leaf nodes will be generated and stored in the files created. Starting from the leaves, while going up, the values in the child nodes will be collected and transferred to the parent node. There is also a makefile in the project. This project was written for System Programming lecture.
- Host: GitHub
- URL: https://github.com/kamilhan-karaismailoglu/tree-fork
- Owner: kamilhan-karaismailoglu
- Created: 2022-05-28T19:33:57.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-28T19:34:51.000Z (over 3 years ago)
- Last Synced: 2025-01-15T11:11:21.163Z (9 months ago)
- Topics: c, fork, fork-tree, makefile
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tree-Fork
In this project, the tree height will be given as a command line argument. According to the incoming argument, files with txt extension will be created for each node in the structure to be created. The filenames will be determined by the pid the nodes have. Random values for leaf nodes will be generated and stored in the files created. Starting from the leaves, while going up, the values in the child nodes will be collected and transferred to the parent node. There is also a makefile in the project. This project was written for System Programming lecture.