mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 06:07:20 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			819 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			819 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/**
 | 
						|
 * File: include_test.c
 | 
						|
 * Created Time: 2023-01-10
 | 
						|
 * Author: Reanon (793584285@qq.com)
 | 
						|
 */
 | 
						|
 | 
						|
#include "include.h"
 | 
						|
 | 
						|
void testListNode() {
 | 
						|
    int nums[] = {2, 3, 5, 6, 7};
 | 
						|
    int size = sizeof(nums) / sizeof(int);
 | 
						|
    ListNode *head = arrToLinkedList(nums, size);
 | 
						|
    printLinkedList(head);
 | 
						|
 | 
						|
    ListNode *node = getListNode(head, 5);
 | 
						|
    printf("find node: %d\n", node->val);
 | 
						|
}
 | 
						|
 | 
						|
void testTreeNode() {
 | 
						|
    int nums[] = {1, 2, 3, NIL, 5, 6, NIL};
 | 
						|
    int size = sizeof(nums) / sizeof(int);
 | 
						|
    TreeNode *root = arrToTree(nums, size);
 | 
						|
 | 
						|
    // print tree
 | 
						|
    printTree(root);
 | 
						|
 | 
						|
    // tree to arr
 | 
						|
    int *arr = treeToArr(root);
 | 
						|
    printArray(arr, size);
 | 
						|
}
 | 
						|
 | 
						|
int main(int argc, char *argv[]) {
 | 
						|
    printf("==testListNode==\n");
 | 
						|
    testListNode();
 | 
						|
    printf("==testTreeNode==\n");
 | 
						|
    testTreeNode();
 | 
						|
    return 0;
 | 
						|
}
 |