Simplify struct declarations of C.

Use PascalCase for all structs in C.
SImplify n_queens.c
Format C code for chapter of graph.
This commit is contained in:
krahets
2023-10-18 02:16:26 +08:00
parent 070d23ee6e
commit 1e49574332
35 changed files with 503 additions and 599 deletions
+2 -4
View File
@@ -72,12 +72,10 @@ static void printLinkedList(ListNode *node) {
printf("%d\n", node->val);
}
struct Trunk {
typedef struct Trunk {
struct Trunk *prev;
char *str;
};
typedef struct Trunk Trunk;
} Trunk;
Trunk *newTrunk(Trunk *prev, char *str) {
Trunk *trunk = (Trunk *)malloc(sizeof(Trunk));