License, disclaimer of liability, and limited warranty


the disks from tower A to tower C with the following constraints



Download 2,08 Mb.
Pdf ko'rish
bet303/393
Sana05.01.2022
Hajmi2,08 Mb.
#319699
1   ...   299   300   301   302   303   304   305   306   ...   393
Bog'liq
C Programming A Self Teaching Int 1uq45XL

the disks from tower A to tower C with the following constraints:
(a)
Only one disk can be moved at a time and that is the top disk.
(b)
A Larger disk cannot be placed on top of a smaller disk.
Write a C program to simulate this Tower of Hanoi problem.
Solution 16:
 Let us write its algorithm first:
if (n = = 1) then
            move disk 1 from tower A to C
else
            move (n-1) smaller disks from tower A to B.
            move the largest disk from tower A to C.
            move the (n-1) smaller disks from tower B to C.
end if
The program is as follows:
#include
#include
#include
void main( )
{
   int n;
   void tower(char from, char to, char using, int n);
   clrscr( );
   printf(“\n Enter the number of disks:”);
   scanf(“%d”, &n);
   if (n < 1)
    {
      printf(“\n It is not possible”);
      exit (1);
  }
  else
     tower(‘A, ‘C’, ‘B’, n);
}
void tower (char from, char to, char using, int n)
{
   if (n = = 1)
      printf (“\n Move disk from %c to %c”, from, to);
   else
    {
      tower (from, using, to, n-1);
      tower (from, to, using, 1);
      tower (using, to, from, n-1);
   }
}


Example
 
17: It is desired to add a user-defined function to a C library. How can this be done.

Download 2,08 Mb.

Do'stlaringiz bilan baham:
1   ...   299   300   301   302   303   304   305   306   ...   393




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish