public double Get(int i)
 {
     if (!st.Contains(i))
     {
         return(0.0);
     }
     else
     {
         return(st.Get(i));
     }
 }