提交 096db654 编写于 作者: M Michael Niedermayer

qsort doxy

Signed-off-by: NMichael Niedermayer <michaelni@gmx.at>
上级 88f87eba
......@@ -21,6 +21,12 @@
#include "common.h"
/**
* Quicksort
* This sort is fast, and fully inplace but not stable and it is possible
* to construct input that requires O(n^2) time but this is very unlikely to
* happen with non constructed input.
*/
#define AV_QSORT(p, num, type, cmp) {\
void *stack[64][2];\
int sp= 1;\
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册