{"id":21906252,"url":"https://github.com/alfex4936/v-algorithms","last_synced_at":"2026-02-25T18:37:51.497Z","repository":{"id":151852419,"uuid":"288455251","full_name":"Alfex4936/V-algorithms","owner":"Alfex4936","description":"Algorithms in V language","archived":false,"fork":false,"pushed_at":"2020-09-01T13:30:52.000Z","size":41,"stargazers_count":7,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-05T16:52:10.092Z","etag":null,"topics":["algorithm","v"],"latest_commit_sha":null,"homepage":"","language":"V","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/Alfex4936.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":"2020-08-18T12:52:56.000Z","updated_at":"2022-09-18T13:56:21.000Z","dependencies_parsed_at":"2023-05-12T11:45:33.096Z","dependency_job_id":null,"html_url":"https://github.com/Alfex4936/V-algorithms","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Alfex4936/V-algorithms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alfex4936%2FV-algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alfex4936%2FV-algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alfex4936%2FV-algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alfex4936%2FV-algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Alfex4936","download_url":"https://codeload.github.com/Alfex4936/V-algorithms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alfex4936%2FV-algorithms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29834631,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T17:57:15.019Z","status":"ssl_error","status_checked_at":"2026-02-25T17:56:11.472Z","response_time":61,"last_error":"SSL_read: 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":["algorithm","v"],"created_at":"2024-11-28T16:43:11.098Z","updated_at":"2026-02-25T18:37:51.482Z","avatar_url":"https://github.com/Alfex4936.png","language":"V","readme":"\u003cdiv align=\"center\"\u003e\n\u003cp\u003e\n    \u003cimg width=\"80\" src=\"https://raw.githubusercontent.com/donnisnoni95/v-logo/master/dist/v-logo.svg?sanitize=true\"\u003e\n\u003c/p\u003e\n\u003ch1\u003eAlgorithms in V language\u003c/h1\u003e\n\n[vlang.io](https://vlang.io) |\n[Docs](https://github.com/Alfex4936/v/blob/master/doc/docs.md)\n\n\u003c/div\u003e\n\n## Introduction\n\nV is a statically typed compiled programming language designed for building maintainable software.\n\nIt's similar to Go and its design has also been influenced by Oberon, Rust, Swift,\nKotlin, and Python.\n\nV is a very simple language. Going through this documentation will take you about half an hour,\nand by the end of it you will have pretty much learned the entire language.\n\nThe language promotes writing simple and clear code with minimal abstraction.\n\nDespite being simple, V gives the developer a lot of power. Anything you can do in other languages,\nyou can do in V.\n\n## Table of Contents\n\n\u003ctable\u003e\n    \u003ctr\u003e\u003ctd width=40% valign=top\u003e\n        \n* Sorting Algorithms\n    * [Bubble Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/bubble_sort.v)\n    * [Count Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/count_sort.v)\n    * [Heap Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/heap_sort.v)\n    * [Insertion Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/insertion_sort.v)\n    * [Introspective Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/intro_sort.v)\n    * [Merge Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/merge_sort.v)\n    * [Quick Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/quick_sort.v)\n    * [Selection Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/selection_sort.v)\n    * [Sleep Sort](https://github.com/Alfex4936/V-algorithms/blob/master/sorting/sleep_sort.v)\n* Math\n    * [Fibonacci Number](https://github.com/Alfex4936/V-algorithms/blob/master/maths/fibo_memoize.v)\n    * [Find min and max in Array](https://github.com/Alfex4936/V-algorithms/blob/master/maths/find_min_max.v)\n    * [Kadane's Algorithm](https://github.com/Alfex4936/V-algorithms/blob/master/maths/kadane_algorithm.v)\n    * [Prime Factorization](https://github.com/Alfex4936/V-algorithms/blob/master/maths/kadane_algorithm.v)\n    * [Sum of digits](https://github.com/Alfex4936/V-algorithms/blob/master/maths/sum_of_digits.v)\n\u003c/td\u003e\u003ctd width=44% valign=top\u003e\n    \n* Array\n    * [Subarray Sort](https://github.com/Alfex4936/V-algorithms/blob/master/array/subarray_sort.v)\n* Graph\n    * [Binary Search Tree](https://github.com/Alfex4936/V-algorithms/blob/master/graph/bst.v)\n* Strings\n    * [Balanced Brackets](https://github.com/Alfex4936/V-algorithms/blob/master/strings/nested_bracket.v)\n    * [Palindrome check](https://github.com/Alfex4936/V-algorithms/blob/master/strings/palindrome.v)\n\u003c/td\u003e\u003c/tr\u003e\n\u003c/table\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falfex4936%2Fv-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falfex4936%2Fv-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falfex4936%2Fv-algorithms/lists"}