Arama

Aşağıda aramanın sonuçları listelenmiştir.

Fulltext results:

Kitap Stok Programı
27 tane bulundu, Son değiştirilme:
tr); return newnode; } template<class T> void DeleteTree(TreeNode<T> *t) { if(t != NULL) { DeleteTree(t->Left()); DeleteTree(t->Right()); FreeTreeNode(t); } } template<class T> void ClearTree(TreeNode<T> * &t) { DeleteTree(t); t=NULL; } template<class T> class B
Reverse Polish Notation Calculator
9 tane bulundu, Son değiştirilme:
int MaxStackSize=256; class Stack{ //a Stack is defined private: int StackList[MaxStackSize]; //S... int temp; if(top==-1){ //for error detection cout<<"Stack is Empty"; // exit(1); ... ms { if(top==MaxStackSize-1){ //for error detection cout<<"Stack is Full"; // exit(1); ... 6); // while (1) { switch(mystring[i]){ //detects whether the item is an operator or a part of
Banka Sıra Simülasyonu Yapan Program
8 tane bulundu, Son değiştirilme:
template <class T> class Node //a node class is defined for the link list { private: Node<T> *nex... LL); void InsertAfter(Node<T> *p); Node<T> *DeleteAfter(void); Node<T> *NextNode(void) const;... next=p; } template <class T> Node<T> *Node<T>::DeleteAfter(void) { Node<T> *temp=next; if(next==... ist newNode=GetNode(item); //GetNode defines a new node; currPtr->InsertAfter(newNode);
Telefon Defteri Programı
3 tane bulundu, Son değiştirilme:
====== Telefon Defteri Programı====== Telefon numaralarını ve isimleri kaydeden bir program: {{:proje... nclude <fstream.h> class Person //The main class defined { public: void UpdateName(char * NewName... exit 0 whch breaks do while loop break; default:MainMenu(); break; }//switch
  • anasayfa.txt
  • Son değiştirilme: 2019/05/08 21:25
  • (Dışarıdan düzenle)