feat(codes/c): update linkedlist_stack.c some code

This commit is contained in:
Gonglja
2023-01-13 06:44:31 +08:00
parent 3839f47ac0
commit 08d715a2e9
2 changed files with 70 additions and 49 deletions

View File

@ -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
}