{"id":29873951,"url":"https://github.com/paltoudara/_single_linked_list_","last_synced_at":"2025-07-30T23:41:34.268Z","repository":{"id":290080697,"uuid":"973312774","full_name":"Paltoudara/_SINGLE_LINKED_LIST_","owner":"Paltoudara","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-25T10:56:20.000Z","size":268,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-27T13:11:29.011Z","etag":null,"topics":["containers","cpp","iterators","linked-list","simple","stl-containers"],"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/Paltoudara.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,"zenodo":null}},"created_at":"2025-04-26T18:06:20.000Z","updated_at":"2025-07-26T18:41:30.000Z","dependencies_parsed_at":"2025-05-21T11:39:45.443Z","dependency_job_id":"c6038b03-6f9b-413f-bf81-05042676a352","html_url":"https://github.com/Paltoudara/_SINGLE_LINKED_LIST_","commit_stats":null,"previous_names":["the-mastermind1/_single_linked_list_","paltoudara/_single_linked_list_"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Paltoudara/_SINGLE_LINKED_LIST_","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paltoudara%2F_SINGLE_LINKED_LIST_","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paltoudara%2F_SINGLE_LINKED_LIST_/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paltoudara%2F_SINGLE_LINKED_LIST_/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paltoudara%2F_SINGLE_LINKED_LIST_/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Paltoudara","download_url":"https://codeload.github.com/Paltoudara/_SINGLE_LINKED_LIST_/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Paltoudara%2F_SINGLE_LINKED_LIST_/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267961220,"owners_count":24172514,"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","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["containers","cpp","iterators","linked-list","simple","stl-containers"],"created_at":"2025-07-30T23:41:29.027Z","updated_at":"2025-07-30T23:41:34.242Z","avatar_url":"https://github.com/Paltoudara.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# _SINGLE_LINKED_LIST_\n# Simple SINGLE LINKED LIST  header that i created using C++\nAN entire single_linked_list with all the basic features:\n\u003cbr\u003e\n1. an  inside class of the simple list node with constructors\u003cbr\u003e\n~the default\u003cbr\u003e\n~with const element\u003cbr\u003e\n~with move element\u003cbr\u003e\n~and a private constructor used to craft the object in place (see implementation)\n2. an inside class of simple iterator (pretty much a wrapper around a pointer that points to a node or to nothing nullptr)\n   with the iterator you have access to change the element or to see it and advance\n   operations supported: operator ++ ,!=,==,*,+=,-\u003e,+,copy operator and move operator and a simple destructor\n   \n3. another inside class of a simple const iterator (pretty much a wrapper around a pointer that points to a node or to nothing nullptr),\n    with this kind of iterator you can just get the element for reading not writing it also supports same operations with the other iterator \u003cbr\u003e\n4. the private members head,tail,count in order to maintain and manipulate the list \n5. push_back function which puts the element at  the end of the list\n6. push_front function  which put the element at the start of the list \n7. pop_front which delete the first element of the list \n8. pop_back which delete the last element of the list\n9. clear this function is used to deallocate the list \n10. reverse func this just reverses the list\n11. insert element justs inserts the element but considers that the list is sorted because sorting a list is already a very expensive operation\n12. delete duplicates ,it just deletes the duplicates again we consider that the list is sorted if it is not we might want to use a hashset in order to keep track of the elements\n13. erase_node_if erases nodes of the list if a certain condition is met with the help of the passed function the argument _Pred\n14. emplace_back same as push_back it just constructs the object in place the only difference\n15. emplace_front same as push_front it just constructs the object in place the only difference\n16. start funcs finish funcs and cstart funcs and cend funcs they just return an iterator or const iterator to the start of the list the head or the end we consider the end to be nullptr\n17. merge lists just combines two lists and leaves the other empty\n18. is_ascending_ checks if the elements are in ascending order using a compare func\n19. is_descending_ checks if the elements are in descending order using a compare func\n20. is sorted checks if the elements are either sorted in  ascending or descending order\n\n# 👥CONTRIBUTORS:\n\n~The-Mastermind1\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaltoudara%2F_single_linked_list_","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaltoudara%2F_single_linked_list_","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaltoudara%2F_single_linked_list_/lists"}