Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ max
Function
max
Trees/avltree.c:23–26 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
21
}
22
23
int max(int a, int b)
24
{
25
return (a > b) ? a : b;
26
}
27
28
// Create a node
29
struct Node *newNode(int key)
Callers
15
rightRotate
Function · 0.70
leftRotate
Function · 0.70
insertNode
Function · 0.70
deleteNode
Function · 0.70
kadanes_algorithm
Function · 0.50
max_circular_subarray
Function · 0.50
maxProfit
Method · 0.50
maxProfit
Method · 0.50
sortUsingHash
Function · 0.50
biggest_odd
Function · 0.50
bucketSort
Function · 0.50
rob
Function · 0.50
Calls
no outgoing calls
Tested by
no test coverage detected