Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- #include <stdio.h>
- int n = 7778889;
- unsigned __int8 n0 = 250;
- typedef unsigned __int8 uint8;
- uint8 n1 = 250;
- //////////////////////////////////////////////////////////////////
- int main() //
- {
- for(int i = 0; i < 20; i++)
- {
- printf("n1 = %4d\n", n1);
- n1++;
- }
- }
- */
- /*
- #include <stdio.h>
- int n = 7778889;
- unsigned __int8 n1 = 250;
- //////////////////////////////////////////////////////////////////
- int main() //
- {
- for(int i = 0; i < 20; i++)
- {
- printf("n1 = %4d\n", n1);
- n1++;
- }
- }
- */
- #include <stdio.h>
- #include <locale.h>
- struct Elem;
- typedef int Inf;
- typedef int Key;
- typedef Elem* pElem;
- ////////////////////////////////////////
- class Elem
- {
- public: Key key;
- Inf inf;
- pElem next;
- };
- ////////////////////////////////////////
- class Tabl
- {
- private: pElem head; // Таблица - указатель на начало цепочки
- public: Tabl();
- void add(Key k, Inf i);
- // void del(Key k);
- // pElem search(Key k);
- // bool empty();
- // void print();
- };
- //////////////////////////////////////////////////////////////////
- Tabl::Tabl() //
- {
- printf("Создана пустая таблица\n");
- head = 0;
- }
- //////////////////////////////////////////////////////////////////
- void Tabl::add(Key k, Inf i) //
- {
- pElem p = new Elem;
- p->key = k;
- p->inf = i;
- p->next = head;
- head = p;
- }
- //////////////////////////////////////////////////////////////////
- int main() //
- {
- setlocale(LC_ALL, "rus");
- Tabl T1;
- printf("Верные символы %d", 77);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement