{"id":20484205,"url":"https://github.com/khaledsalshibani/cpp-nested-linked-lists","last_synced_at":"2025-08-24T06:09:31.375Z","repository":{"id":241945986,"uuid":"764261359","full_name":"khaledsAlshibani/cpp-nested-linked-lists","owner":"khaledsAlshibani","description":"This repository was created as a college assignment. It includes detailed explanations for each file, class, and method used. The project implements nested linked lists for handling basic file operations.","archived":false,"fork":false,"pushed_at":"2024-05-30T18:30:53.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-16T04:26:10.223Z","etag":null,"topics":["cpp","cpp-tutorials","data-structures","file-handling","linked-list"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/khaledsAlshibani.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-27T19:08:54.000Z","updated_at":"2024-05-30T18:33:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"77281efc-fff5-4c60-a51a-fa4ff36e22a0","html_url":"https://github.com/khaledsAlshibani/cpp-nested-linked-lists","commit_stats":null,"previous_names":["khaledsalshibani/cpp-nested-linked-lists"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaledsAlshibani%2Fcpp-nested-linked-lists","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaledsAlshibani%2Fcpp-nested-linked-lists/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaledsAlshibani%2Fcpp-nested-linked-lists/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khaledsAlshibani%2Fcpp-nested-linked-lists/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khaledsAlshibani","download_url":"https://codeload.github.com/khaledsAlshibani/cpp-nested-linked-lists/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242058218,"owners_count":20065066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","cpp-tutorials","data-structures","file-handling","linked-list"],"created_at":"2024-11-15T16:20:26.827Z","updated_at":"2025-03-05T16:18:46.049Z","avatar_url":"https://github.com/khaledsAlshibani.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n    \u003ch1\u003eFile Parsing and Storage in a Nested Linked List Structure\u003c/h1\u003e\n    \u003cimg src=\"https://iili.io/JMf2vqX.png\"\u003e\n\u003c/div\u003e\n\n## Introduction\nThe program reads a file containing text, breaks it into lines, and then further breaks each line into words. Each line is represented by a linked list, where each word is stored in a node of the linked list. Finally, all the lines are stored in another linked list.\n\n## Contents\n\n- [Introduction](#introduction)\n- [Contents](#contents)\n- [Overview](#overview)\n- [Prerequisites](#prerequisites)\n- [Pros](#pros)\n- [Cons](#cons)\n- [Classes Documentations](#classes-documentations)\n- [Usage](#usage)\n\n## Overview\nThis repository was created as a project assignment for college, implementing a linked list data structure in C++. The program reads a file containing text, breaks it into lines, and then further breaks each line into words. Each line is represented by a linked list, where each word is stored in a node of the linked list. Finally, all the lines are stored in another linked list.\n\n## Prerequisites\nBefore diving into the code, it is recommended to have the following knowledge:\n- Basic understanding of C++ fundamentals.\n- Familiarity with memory management and Pointers: Linked lists rely on dynamic memory allocation and pointer manipulation.\n- Basic understanding of object-oriented programming (OOP) concepts.\n- Knowledge of file handling operations, particularly reading files.\n\n## Pros\n- Using object-oriented programming (OOP).\n- Detailed explanations for each class file within **README.md** files.\n\n## Cons\n- Time and space complexity considerations are not optimized (we plan to do enhancements).\n- \n## Classes Documentations\n- [FileReader](src/include/FileReader/README.md): A class for reading text files and extracting lines and words from them.\n- [Node](src/include/Node/README.md): A class representing a single node in a linked list, storing data and a pointer to the next node.\n- [LineLinkedList](src/include/LineLinkedList/README.md): A linked list structure representing a single line of text, with each node containing a word.\n- [MasterLinkedList](src/include/MasterLinkedList/README.md): A linked list structure containing line-linked lists, forming a hierarchical structure for storing text data.\n- [LinkedListProcessor](src/include/LinkedListProcessor/README.md): The main processing class that is responsible for parsing and storage of text data using linked lists.\n- [Menu](src/include/Menu/README.md): A class that lets the user interacting with the program, by displaying a menu of operations and processing the operation they want to process.\n\n## Usage\nTo use this repository, clone it. and ensure that your IDE supports C++.\n```bash\ngit clone https://github.com/khaledsAlshibani/cpp-nested-linked-lists.git\n\ncd cpp-nested-linked-lists\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhaledsalshibani%2Fcpp-nested-linked-lists","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhaledsalshibani%2Fcpp-nested-linked-lists","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhaledsalshibani%2Fcpp-nested-linked-lists/lists"}