priority queues now 24 and 25

This commit is contained in:
Jidong Xiao
2024-04-03 01:59:38 -04:00
parent 2183ea7c83
commit 08ed8d4cbd
9 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <iostream>
int main(){
int a[] = { 0, 1, 2, 3, 4, 5 };
for (int n : a)
std::cout << n << ' ';
}