mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 14:18:20 +08:00 
			
		
		
		
	* Replace VLA with malloc Replace VLA with malloc to make C code compatible with cl compiler on Windows. * Fix C code for CI compiler. * Fix C code compability to CI. * check the trigger
		
			
				
	
	
		
			129 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * File: print_util.h
 | 
						|
 * Created Time: 2022-12-21
 | 
						|
 * Author: MolDum (moldum@163.com), Reanon (793584285@qq.com)
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef PRINT_UTIL_H
 | 
						|
#define PRINT_UTIL_H
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
 | 
						|
#include "list_node.h"
 | 
						|
#include "tree_node.h"
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
/* Print an Array */
 | 
						|
void printArray(int arr[], int size) {
 | 
						|
    if (arr == NULL || size == 0) {
 | 
						|
        printf("[]");
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    printf("[");
 | 
						|
    for (int i = 0; i < size - 1; i++) {
 | 
						|
        printf("%d, ", arr[i]);
 | 
						|
    }
 | 
						|
    printf("%d]\n", arr[size - 1]);
 | 
						|
}
 | 
						|
 | 
						|
/* Print an Array */
 | 
						|
void printArrayFloat(float arr[], int size) {
 | 
						|
    if (arr == NULL || size == 0) {
 | 
						|
        printf("[]");
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    printf("[");
 | 
						|
    for (int i = 0; i < size - 1; i++) {
 | 
						|
        printf("%.2f, ", arr[i]);
 | 
						|
    }
 | 
						|
    printf("%.2f]\n", arr[size - 1]);
 | 
						|
}
 | 
						|
 | 
						|
/* Print a linked list */
 | 
						|
void printLinkedList(ListNode *node) {
 | 
						|
    if (node == NULL) {
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    while (node->next != NULL) {
 | 
						|
        printf("%d -> ", node->val);
 | 
						|
        node = node->next;
 | 
						|
    }
 | 
						|
    printf("%d\n", node->val);
 | 
						|
}
 | 
						|
 | 
						|
typedef struct Trunk {
 | 
						|
    struct Trunk *prev;
 | 
						|
    char *str;
 | 
						|
} Trunk;
 | 
						|
 | 
						|
Trunk *newTrunk(Trunk *prev, char *str) {
 | 
						|
    Trunk *trunk = (Trunk *)malloc(sizeof(Trunk));
 | 
						|
    trunk->prev = prev;
 | 
						|
    trunk->str = (char *)malloc(sizeof(char) * 10);
 | 
						|
    strcpy(trunk->str, str);
 | 
						|
    return trunk;
 | 
						|
}
 | 
						|
 | 
						|
/* Helper function to print branches of the binary tree */
 | 
						|
void showTrunks(Trunk *trunk) {
 | 
						|
    if (trunk == NULL) {
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    showTrunks(trunk->prev);
 | 
						|
    printf("%s", trunk->str);
 | 
						|
}
 | 
						|
 | 
						|
/* Help to print a binary tree, hide more details */
 | 
						|
void printTreeHelper(TreeNode *node, Trunk *prev, bool isRight) {
 | 
						|
    if (node == NULL) {
 | 
						|
        return;
 | 
						|
    }
 | 
						|
    char *prev_str = "    ";
 | 
						|
    Trunk *trunk = newTrunk(prev, prev_str);
 | 
						|
    printTreeHelper(node->right, trunk, true);
 | 
						|
    if (prev == NULL) {
 | 
						|
        trunk->str = "———";
 | 
						|
    } else if (isRight) {
 | 
						|
        trunk->str = "/———";
 | 
						|
        prev_str = "   |";
 | 
						|
    } else {
 | 
						|
        trunk->str = "\\———";
 | 
						|
        prev->str = prev_str;
 | 
						|
    }
 | 
						|
    showTrunks(trunk);
 | 
						|
    printf("%d\n", node->val);
 | 
						|
 | 
						|
    if (prev != NULL) {
 | 
						|
        prev->str = prev_str;
 | 
						|
    }
 | 
						|
    trunk->str = "   |";
 | 
						|
 | 
						|
    printTreeHelper(node->left, trunk, false);
 | 
						|
}
 | 
						|
 | 
						|
/* Print a binary tree */
 | 
						|
void printTree(TreeNode *root) {
 | 
						|
    printTreeHelper(root, NULL, false);
 | 
						|
}
 | 
						|
 | 
						|
/* Print a Heap */
 | 
						|
void printHeap(int arr[], int size) {
 | 
						|
    TreeNode *root;
 | 
						|
    printf("堆的数组表示:");
 | 
						|
    printArray(arr, size);
 | 
						|
    printf("堆的树状表示:\n");
 | 
						|
    root = arrayToTree(arr, size);
 | 
						|
    printTree(root);
 | 
						|
}
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif // PRINT_UTIL_H
 |