Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. void umple(short int x,short int y,short int k)
  2. {
  3.     short int p;
  4.     VIZ[x][y][k]=1;
  5.     for(p=0;p<=3;p++)
  6.         if(A[x+dl[p]][y+dc[p]]==k && VIZ[x+dl[p]][y+dc[p]][k]==0)
  7.             umple(x+dl[p],y+dc[p],k);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement