Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'captinmichael'

1997318 - binary_tree main function: main binary tree void fxp m1o2 elsf captinmichael adt binary_tree.c binary_tree datastructre binary_tree.h
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <conio.h>
  4. #include <math.h>
  5. #include <time.h>
  6. #include "BinaryTree.h"
  7.  
  8.  
  9.  
1997308 - Binary_Tree.c implementation: file binary tree void fxp m1o2 elsf captinmichael adt binary_tree.c binary_tree binarytree implementation datastructre
  1. #include <stdio.h>
  2. #include "BinaryTree.h"
  3. #include <conio.h>
  4. #include <stdlib.h>
  5.  
  6. Leaf* createLeaf(Value value){ // creating a new leaf which will contain the value
  7.         Leaf *leaf = NULL;
  8.  
  9.  
1997304 - Binary_Tree.h: file header binary tree void fxp m1o2 elsf .h fiel captinmichael adt
  1. #ifndef _Binary_Tree
  2. #define _Binary_Tree
  3. //#pragma once
  4.  
  5. /* macros for general using */
  6. #define _WaitForResponse { fprintf(stdout,"\n\n Press Any Key To Continue..."); getch(); }
  7. #define _Msg(msg) { fprintf(stdout,"\n\n"); fprintf(stdout,msg); };
  8. #define _ErrMsg(msg) { fprintf(stderr,"\n\n"); fprintf(stderr,msg); _WaitForResponse exit(1); };
  9.  
fantasy-obligation