Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/algorithmzuo/algorithm-journey
/ index
Method
index
src/class149/SkipList1.java:208–210 ·
view source on GitHub ↗
(int x)
Source
from the content-addressed store, hash-verified
206
207
// 查询排名第x的key是什么
208
public
static
int
index(
int
x) {
209
return
index(1, MAXL, x);
210
}
211
212
// 当前在i号节点的h层,查询排名第x的key是什么
213
public
static
int
index(
int
i,
int
h,
int
x) {
Callers
1
main
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected