Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. PrintLCS(b,X,i,j)
  2. if i==0 or j==0
  3. return
  4. if b[i,j]=="\"
  5. PrintLCS(b,X,i-1,j-1)
  6. print xi
  7. else if b[i,j]=="|"
  8. PrintLCS(b,X,i-1,j)
  9. else
  10. PrintLCS(b,X,i,j-1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement