mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 11:46:29 +08:00
f0b092fec4
* add : C# heap ,graph, fix type "sift"=>"shift" * chore: rename "shift" to "sift" * add: heap,graph C# sample code ,fix format * fix md format * fix md intend foramt * fix basic_operation_of_graph.md format * fix md format * fix md format * fix indentation format * chore: fix my_heap.cs test * fix: test and doc typo * fix bug for commit5eae708
(#317) * Add Zig code blocks. * fix: resolve build error for commit5eae708
(#318) * Unify the function naming of queue from `offer()` to `push()` * Update TypeScript codes. * Update binary_search_tree * Update graph operations. * Fix code indentation. * Update worst_best_time_complexity, leetcode_two_sum * Update avl_tree * copy zig codes of chapter_array_and_linkedlist and chapter_computatio… (#319) * copy zig codes of chapter_array_and_linkedlist and chapter_computational_complexity to markdown files * Update time_complexity.md --------- Co-authored-by: Yudong Jin <krahets@163.com> * Fix Python code styles. Update hash_map. * chore: fix heap logic * Update graph_adjacency_matrix.cs * Update graph_adjacency_matrix.cs * Update my_heap.cs * fix: heap test * fix naming format * merge markdown * fix markdown format * Update graph_adjacency_list.cs * Update graph_adjacency_matrix.cs * Update PrintUtil.cs * Create Vertex.cs * Update heap.cs --------- Co-authored-by: zjkung1123 <zjkung1123@fugle.tw> Co-authored-by: sjinzh <99076655+sjinzh@users.noreply.github.com> Co-authored-by: Yudong Jin <krahets@163.com> Co-authored-by: nuomi1 <nuomi1@qq.com>
70 lines
2.1 KiB
Java
70 lines
2.1 KiB
Java
/**
|
|
* File: heap.cs
|
|
* Created Time: 2023-02-06
|
|
* Author: zjkung1123 (zjkung1123@gmail.com)
|
|
*/
|
|
|
|
using hello_algo.include;
|
|
using NUnit.Framework;
|
|
|
|
namespace hello_algo.chapter_heap;
|
|
|
|
public class heap
|
|
{
|
|
public void testPush(PriorityQueue<int, int> heap, int val)
|
|
{
|
|
heap.Enqueue(val, val); // 元素入堆
|
|
Console.WriteLine($"\n元素 {val} 入堆后\n");
|
|
PrintUtil.printHeap(heap);
|
|
}
|
|
|
|
public void testPoll(PriorityQueue<int, int> heap)
|
|
{
|
|
int val = heap.Dequeue(); // 堆顶元素出堆
|
|
Console.WriteLine($"\n堆顶元素 {val} 出堆后\n");
|
|
PrintUtil.printHeap(heap);
|
|
}
|
|
[Test]
|
|
public void Test()
|
|
{
|
|
/* 初始化堆 */
|
|
// 初始化小顶堆
|
|
PriorityQueue<int, int> minHeap = new PriorityQueue<int, int>();
|
|
// 初始化大顶堆(使用 lambda 表达式修改 Comparator 即可)
|
|
PriorityQueue<int, int> maxHeap = new PriorityQueue<int, int>(Comparer<int>.Create((x, y) => y - x));
|
|
Console.WriteLine("以下测试样例为大顶堆");
|
|
|
|
/* 元素入堆 */
|
|
testPush(maxHeap, 1);
|
|
testPush(maxHeap, 3);
|
|
testPush(maxHeap, 2);
|
|
testPush(maxHeap, 5);
|
|
testPush(maxHeap, 4);
|
|
|
|
/* 获取堆顶元素 */
|
|
int peek = maxHeap.Peek();
|
|
Console.WriteLine($"堆顶元素为 {peek}");
|
|
|
|
/* 堆顶元素出堆 */
|
|
// 出堆元素会形成一个从大到小的序列
|
|
testPoll(maxHeap);
|
|
testPoll(maxHeap);
|
|
testPoll(maxHeap);
|
|
testPoll(maxHeap);
|
|
testPoll(maxHeap);
|
|
|
|
/* 获取堆大小 */
|
|
int size = maxHeap.Count;
|
|
Console.WriteLine($"堆元素数量为 {size}");
|
|
|
|
/* 判断堆是否为空 */
|
|
bool isEmpty = maxHeap.Count == 0;
|
|
Console.WriteLine($"堆是否为空 {isEmpty}");
|
|
|
|
/* 输入列表并建堆 */
|
|
var list = new int[] { 1, 3, 2, 5, 4 };
|
|
minHeap = new PriorityQueue<int, int>(list.Select(x => (x, x)));
|
|
Console.WriteLine("输入列表并建立小顶堆后");
|
|
PrintUtil.printHeap(minHeap);
|
|
}
|
|
}
|