mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 23:16:28 +08:00
8bc41bc013
* fix(codes/cpp): Memory leak fix: the space was not freed when pop removed the element. * fix(codes/cpp): Fix access error when printArray(arr, 0) * fix(codes/cpp): Fix memory leaks: replace pointers with local variables, no need to manage memory * fix(codes/cpp): Fix memory leaks: no delete * fix(codes/cpp): Fix memory leaks: Add destructor ~ArrayHashMap() * Update PrintUtil.hpp * feat(codes/c): Add three-party hash implementation * feat(codes/c): Add freeMemoryTree in tree_node.h * feat(codes/c): Add space_complexity.c * styles(codes/c): Modify format * feat(codes/cpp): Undo a previous delete, there is no memory leak here * Update array_hash_map.cpp * Update include.h --------- Co-authored-by: Yudong Jin <krahets@163.com>
32 lines
480 B
C
32 lines
480 B
C
/**
|
|
* File: include.h
|
|
* Created Time: 2022-12-20
|
|
* Author: MolDuM (moldum@163.com)、Reanon (793584285@qq.com)
|
|
*/
|
|
|
|
#ifndef C_INCLUDE_H
|
|
#define C_INCLUDE_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include <time.h>
|
|
#include <assert.h>
|
|
|
|
#include "list_node.h"
|
|
#include "tree_node.h"
|
|
#include "print_util.h"
|
|
|
|
// hash table lib
|
|
#include "uthash.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // C_INCLUDE_H
|