{"id":18304092,"url":"https://github.com/echosingh/ahocorasickproject","last_synced_at":"2026-02-11T01:32:58.774Z","repository":{"id":248406032,"uuid":"828565153","full_name":"EchoSingh/AhoCorasickProject","owner":"EchoSingh","description":"Aho-Corasick Visualization Project with GUI using wxWidgets ","archived":false,"fork":false,"pushed_at":"2024-12-26T12:34:55.000Z","size":72,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-10T19:36:35.763Z","etag":null,"topics":["aho-corasick","aho-corasick-algorithm","cpp","wxwidgets"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EchoSingh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null}},"created_at":"2024-07-14T14:31:05.000Z","updated_at":"2025-01-21T15:10:52.000Z","dependencies_parsed_at":"2025-06-12T00:03:11.903Z","dependency_job_id":"56e0ed6d-9ab8-4770-b00f-ec77c697a3a1","html_url":"https://github.com/EchoSingh/AhoCorasickProject","commit_stats":null,"previous_names":["aditya26062003/ahocorasickproject","echosingh/ahocorasickproject"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EchoSingh/AhoCorasickProject","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EchoSingh%2FAhoCorasickProject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EchoSingh%2FAhoCorasickProject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EchoSingh%2FAhoCorasickProject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EchoSingh%2FAhoCorasickProject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EchoSingh","download_url":"https://codeload.github.com/EchoSingh/AhoCorasickProject/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EchoSingh%2FAhoCorasickProject/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29324218,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T00:34:26.354Z","status":"ssl_error","status_checked_at":"2026-02-11T00:34:09.494Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["aho-corasick","aho-corasick-algorithm","cpp","wxwidgets"],"created_at":"2024-11-05T15:27:47.198Z","updated_at":"2026-02-11T01:32:58.754Z","avatar_url":"https://github.com/EchoSingh.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![wakatime](https://wakatime.com/badge/github/EchoSingh/AhoCorasickProject.svg)](https://wakatime.com/badge/github/EchoSingh/AhoCorasickProject)\n# 🎯 Aho-Corasick Visualization Project\n\nWelcome to the Aho-Corasick Visualization Project! This project visualizes the Aho-Corasick string matching algorithm using wxWidgets for the graphical user interface. The algorithm efficiently searches for multiple patterns in a given text, providing visualization of its steps, memory consumption, and results.\n\n## 📁 Project Structure\n\n```\nAhoCorasickProject/\n├── AhoCorasickProject/\n│   ├── AhoCorasickProject.vcxproj\n│   ├── AhoCorasickProject.vcxproj.user\n│   ├── Ahocorasick.cpp\n│   ├── Ahocorasick.h\n│   ├── Visualization.h\n│   ├── main.cpp\n│   ├── patterns.txt\n│   └── visualization.cpp\n├── .gitattributes\n├── .gitignore\n├── AhoCorasickProject.sln\n├── LICENSE.txt\n└── README.md\n```\n\n## 📝 Files Description\n\n- **AhoCorasickProject.vcxproj**: The Visual Studio project file.\n- **AhoCorasickProject.vcxproj.user**: User-specific project settings.\n- **AhoCorasickProject.sln**: The Visual Studio solution file.\n- **Ahocorasick.cpp**: Implementation of the Aho-Corasick algorithm.\n- **Ahocorasick.h**: Header file for the Aho-Corasick algorithm.\n- **Visualization.h**: Header file for the wxWidgets-based visualization.\n- **main.cpp**: Entry point of the application.\n- **patterns.txt**: Sample file containing patterns to search.\n- **visualization.cpp**: Implementation of the wxWidgets-based visualization.\n- **.gitattributes**: Git attributes file.\n- **.gitignore**: Git ignore file.\n- **LICENSE.txt**: License for the project.\n- **README.md**: This README file.\n\n## 📦 Dependencies\n\n- wxWidgets\n- C++17 or higher\n- Visual Studio 2019 or later (for building the project)\n\n## ⚙️ Building the Project\n\n1. **Clone the repository:**\n   ```bash\n   git clone https://github.com/EchoSingh/AhoCorasickProject.git\n   cd AhoCorasickProject\n   ```\n\n2. **Open the Solution in Visual Studio:**\n   Open `AhoCorasickProject.sln` with Visual Studio.\n\n3. **Build the Project:**\n   Build the solution using Visual Studio.\n\n## 🚀 Running the Project\n\n1. **Load Patterns:**\n   Use the \"Open Patterns...\" menu option to load the `patterns.txt` file.\n\n2. **Run the Algorithm:**\n   Use the \"Run Algorithm...\" menu option to input a text and search for the patterns.\n\n3. **Visualization:**\n   The results of the search will be displayed in the GUI, showing where each pattern is found in the text.\n\n## 📄 Example Patterns File\n\nThe `patterns.txt` file should contain one pattern per line. Example:\n```\nhe\nshe\nhis\nhers\nher\nhero\nsh\n```\n## Output_Image\n[main_frame](https://github.com/EchoSingh/AhoCorasickProject/blob/master/Screenshots/Screenshot%202024-07-14%20205250.png)\n## 📜 License\n\nThis project is licensed under the MIT License - see the [LICENSE.txt](LICENSE.txt) file for details.\n\n## 👤 Author\n\n- GitHub: [aditya26062003](https://github.com/EchoSingh)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fechosingh%2Fahocorasickproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fechosingh%2Fahocorasickproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fechosingh%2Fahocorasickproject/lists"}