Estructuras de datos y algoritmos | conjunto 4
Se han hecho las siguientes preguntas en el examen GATE CS. 1. Considere el siguiente segmento de programa C c struct CellNode { struct CelINode *leftchild; int element; struct CelINode *rightChild; } int Dosomething(struct CelINode *ptr) { int value = 0; if (ptr != NULL) { if (ptr->leftChild != NULL) value = 1 + DoSomething(ptr->leftChild); … Continue reading «Estructuras de datos y algoritmos | conjunto 4»