Einzelnen Beitrag anzeigen

Dax
(Gast)

n/a Beiträge
 
#6

Re: Zeiger auf Struct in C

  Alt 24. Mai 2006, 19:24
Wenn du reines C benutzt gibts doch gar keine Klassen?

Naja, hab das mit dem -> im .NET-SDK gefunden

Code:
struct BTree {
   char *szText;
   BTree *Left;
   BTree *Right;
};

void PrintTree( BTree* MybtRoot ) {
   // Traverse the left branch of the tree recursively.
   if ( btRoot->Left )
      PrintTree( btRoot->Left );

   // Print the current node.
   cout << btRoot->szText << "\n";

   // Traverse the right branch of the tree recursively.
   if ( btRoot->Right )
      PrintTree( btRoot->Right );
}
  Mit Zitat antworten Zitat