{"id":19310627,"url":"https://github.com/sepppenner/fibonacciheap","last_synced_at":"2026-05-13T20:33:22.139Z","repository":{"id":82868718,"uuid":"95957394","full_name":"SeppPenner/FibonacciHeap","owner":"SeppPenner","description":"FibonacciHeap is an assembly/ library to build and use Fibonacci heaps in C#.","archived":false,"fork":false,"pushed_at":"2025-01-07T17:31:54.000Z","size":52,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-14T21:28:39.918Z","etag":null,"topics":[],"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/SeppPenner.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-07-01T10:24:22.000Z","updated_at":"2025-01-07T17:31:47.000Z","dependencies_parsed_at":"2024-11-10T00:25:17.547Z","dependency_job_id":"e11baeb7-ffa2-4f39-9005-6fcd02b9b7a9","html_url":"https://github.com/SeppPenner/FibonacciHeap","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/SeppPenner/FibonacciHeap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeppPenner%2FFibonacciHeap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeppPenner%2FFibonacciHeap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeppPenner%2FFibonacciHeap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeppPenner%2FFibonacciHeap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SeppPenner","download_url":"https://codeload.github.com/SeppPenner/FibonacciHeap/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeppPenner%2FFibonacciHeap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32999349,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"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":[],"created_at":"2024-11-10T00:25:10.343Z","updated_at":"2026-05-13T20:33:22.116Z","avatar_url":"https://github.com/SeppPenner.png","language":"C#","funding_links":["https://patreon.com/SeppPennerOpenSourceDevelopment","https://paypal.me/th070795"],"categories":[],"sub_categories":[],"readme":"FibonacciHeap\n====================================\n\nFibonacciHeap is an assembly/ library to build and use Fibonacci heaps in C#.\n\n[![Build status](https://ci.appveyor.com/api/projects/status/4r73mgd973f5bek9?svg=true)](https://ci.appveyor.com/project/SeppPenner/fibonacciheap)\n[![GitHub issues](https://img.shields.io/github/issues/SeppPenner/FibonacciHeap.svg)](https://github.com/SeppPenner/FibonacciHeap/issues)\n[![GitHub forks](https://img.shields.io/github/forks/SeppPenner/FibonacciHeap.svg)](https://github.com/SeppPenner/FibonacciHeap/network)\n[![GitHub stars](https://img.shields.io/github/stars/SeppPenner/FibonacciHeap.svg)](https://github.com/SeppPenner/FibonacciHeap/stargazers)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://raw.githubusercontent.com/SeppPenner/FibonacciHeap/master/License.txt)\n[![Known Vulnerabilities](https://snyk.io/test/github/SeppPenner/FibonacciHeap/badge.svg)](https://snyk.io/test/github/SeppPenner/FibonacciHeap)\n[![Blogger](https://img.shields.io/badge/Follow_me_on-blogger-orange)](https://franzhuber23.blogspot.de/)\n[![Patreon](https://img.shields.io/badge/Patreon-F96854?logo=patreon\u0026logoColor=white)](https://patreon.com/SeppPennerOpenSourceDevelopment)\n[![PayPal](https://img.shields.io/badge/PayPal-00457C?logo=paypal\u0026logoColor=white)](https://paypal.me/th070795)\n\n## Basic usage\n```csharp\npublic void Test()\n{\n\tFibonacciHeap heap = new FibonacciHeap();\n\tbool empty = heap.IsEmpty();\n\tvar minValue = heap.Min;\n\tvar heapNode = heap.Pop();\n\t//...\n}\n```\n\n## Available methods\n```csharp\n    public TValue Min {}\n\n    public bool IsEmpty();\n\n    public HeapNode\u003cTValue, TPriority\u003e Pop();\n\n    public void DecreaseKey(HeapNode\u003cTValue, TPriority\u003e entry, TPriority newPriorty);\n\n    public IEnumerator\u003cTValue\u003e GetEnumerator();\n\n    IEnumerator IEnumerable.GetEnumerator();\n\n    private void Cut(HeapNode\u003cTValue, TPriority\u003e entry);\n    \n    private HeapNode\u003cTValue, TPriority\u003e Merge(\n        HeapNode\u003cTValue, TPriority\u003e first,\n        HeapNode\u003cTValue, TPriority\u003e second);\n```\n\nChange history\n--------------\n\nSee the [Changelog](https://github.com/SeppPenner/FibonacciHeap/blob/master/Changelog.md).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsepppenner%2Ffibonacciheap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsepppenner%2Ffibonacciheap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsepppenner%2Ffibonacciheap/lists"}