{"id":22613406,"url":"https://github.com/talentedandrew/go-linkedlist","last_synced_at":"2025-03-29T00:13:57.795Z","repository":{"id":254050457,"uuid":"138774238","full_name":"talentedandrew/Go-LinkedList","owner":"talentedandrew","description":"Implementation of linked list in Go.","archived":false,"fork":false,"pushed_at":"2018-06-26T18:03:15.000Z","size":1,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-03T10:14:32.143Z","etag":null,"topics":["data-structures","go","golang","linked-list"],"latest_commit_sha":null,"homepage":"","language":"Go","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/talentedandrew.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":"2018-06-26T17:57:12.000Z","updated_at":"2018-06-26T18:07:31.000Z","dependencies_parsed_at":"2024-08-21T05:10:28.807Z","dependency_job_id":"f90a018b-c4de-4277-9daa-2043f90ba3a8","html_url":"https://github.com/talentedandrew/Go-LinkedList","commit_stats":null,"previous_names":["talentedandrew/go-linkedlist"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talentedandrew%2FGo-LinkedList","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talentedandrew%2FGo-LinkedList/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talentedandrew%2FGo-LinkedList/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talentedandrew%2FGo-LinkedList/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/talentedandrew","download_url":"https://codeload.github.com/talentedandrew/Go-LinkedList/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246117761,"owners_count":20726068,"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":["data-structures","go","golang","linked-list"],"created_at":"2024-12-08T17:16:53.474Z","updated_at":"2025-03-29T00:13:57.772Z","avatar_url":"https://github.com/talentedandrew.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Go : Linked Lists\n\nAn implementation of singly Linked List in Go.\n\nConsider a feed (as in twitter) of posts, where each post consists of some data and time and a pointer to the next post.\n\nSo our `Post` would look like :\n\n```go\n\ntype Post struct {\n\tbody         string\n\tpublishDate int64 // Unix timestamp\n\tnext *Post // link to the next Post\n}\n\n```\n\nAnd, so our `Feed` would look like :\n\n```go\n\ntype Feed struct {\n\tlength int // we'll use it later\n\tstart  *Post\n\tend  *Post\n}\n```\n\n[Inspired from Ilija Eftimov](https://ieftimov.com/golang-datastructures-linked-lists). You can get here a more detailed and a beautiful explaination of this.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalentedandrew%2Fgo-linkedlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalentedandrew%2Fgo-linkedlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalentedandrew%2Fgo-linkedlist/lists"}