Skip to content

seongcheoljeon/vex-method

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Houdini VEX Method

자주 사용하는 Houdini VEX 메소드 정의 파일이다.

  • method.h : 여러가지 정의.
  • PriorityQueue.h : Heap 자료구조를 이용한 우선순위 큐 정의. 성능: O(nlog2n)
#include "PriorityQueue.h"

PQueue pq;
PQueueInit(pq);
// 데이터 삽입
PEnqueue(pq, 10);
PEnqueue(pq, 8);
PEnqueue(pq, 2);
PEnqueue(pq, 5);

// 데이터 출력
while(!PQIsEmpty(pq)){
    printf("%d ", PDequeue(pq));
}

/* 출력결과
2 5 8 10
*/

About

Houdini VEX Method

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages