MCPcopy Create free account
hub / github.com/ShahjalalShohag/code-library / buildBetweenZero

Method buildBetweenZero

Data Structures/SQRT Tree.cpp:58–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56 }
57
58 inline void buildBetweenZero() {
59 int bSzLog = (llg + 1) >> 1;
60 for (int i = 0; i < indexSz; i++) {
61 v[n + i] = suf[0][i << bSzLog];
62 }
63 build(1, n, n + indexSz, (1 << llg) - n);
64 }
65
66 inline void updateBetweenZero(int bid) {
67 int bSzLog = (llg + 1) >> 1;

Callers

nothing calls this directly

Calls 1

buildFunction · 0.70

Tested by

no test coverage detected