SomeNet
/
public repos
/
pub
/
jan
/
parprog.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
int -> unsigned int
[pub/jan/parprog.git]
/
openmp
/
prefix
/
algorithm_3.h
1
/*
2
* O(nlog n) work algorithm (Hillis-Steele)
3
*/
4
#include <stdio.h>
5
#include "prefix.h"
6
7
void algorithm_3 (numtype y[], unsigned int n, unsigned int ops[]);