{"id":23708374,"url":"https://github.com/ivzeng/dynamic_array","last_synced_at":"2025-07-10T00:38:11.364Z","repository":{"id":197501640,"uuid":"549765500","full_name":"ivzeng/dynamic_array","owner":"ivzeng","description":"A c++ implementation of dynamic-sized array","archived":false,"fork":false,"pushed_at":"2022-10-11T18:05:12.000Z","size":88,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-23T04:26:36.579Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ivzeng.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}},"created_at":"2022-10-11T17:46:27.000Z","updated_at":"2022-10-11T17:46:54.000Z","dependencies_parsed_at":"2023-10-01T02:00:48.818Z","dependency_job_id":null,"html_url":"https://github.com/ivzeng/dynamic_array","commit_stats":null,"previous_names":["ivzeng/dynamic_array"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ivzeng/dynamic_array","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivzeng%2Fdynamic_array","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivzeng%2Fdynamic_array/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivzeng%2Fdynamic_array/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivzeng%2Fdynamic_array/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ivzeng","download_url":"https://codeload.github.com/ivzeng/dynamic_array/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ivzeng%2Fdynamic_array/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264506265,"owners_count":23619005,"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":[],"created_at":"2024-12-30T17:56:17.804Z","updated_at":"2025-07-10T00:38:11.329Z","avatar_url":"https://github.com/ivzeng.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dynamic_array\nA c++ implementation of dynamic-sized array. ./main would produce the excutation time tests for the DynamicArray structure and the std::vector. \n\n# a simple example\n```\nDynamicArray\u003cint\u003e da{};       // creates a integer DynamicArray, da, of initial capacity 5\nda = DynamicArray\u003cint\u003e{10};   // sets da to a DynamicArray of initial capacity 10\nfor (int i = 1; i \u003c= 20; i += 1)\n    da.push_back(i);          // pushes integers from 1 to 20 into da\nda[0] = -1;                   // sets the first element of da to -1\nda[0] += 1;                   // increments the first element of da by 1\nda.print()                    // print the array, elements separated by two spaces\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivzeng%2Fdynamic_array","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fivzeng%2Fdynamic_array","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivzeng%2Fdynamic_array/lists"}