mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-08 16:28:17 +08:00
feat(codes/c): update linkedlist_stack.c some code
This commit is contained in:
@ -127,6 +127,14 @@ static void printTree(TreeNode *root) {
|
||||
printTreeHelper(root, NULL, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Print a stack
|
||||
*
|
||||
* @param head
|
||||
*/
|
||||
static void printStack(void *stack) {
|
||||
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user