Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/1a1a11a/libCacheSim
/ find_max_t
Function
find_max_t
libCacheSim/dataStructure/splay_tuple.c:289–293 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
287
}
288
289
sTree_tuple *find_max_t(sTree_tuple *t) {
290
if (t == NULL) return NULL;
291
while (t->right != NULL) t = t->right;
292
return t;
293
}
Callers
1
compute_distance_fixed_size
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected