Guest User

Euclid's algorythm

a guest
Aug 13th, 2010
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. package sparseMatrix;
  2.  
  3. public class MNode {
  4.     public MNode left;
  5.     public MNode up;
  6.     public float value;
  7.     public short row;
  8.     public short col;
  9.     public MNode(float v){
  10.         this.value = v;
  11.     }  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment