Location_info.java
上传用户:kingseaxu
上传日期:2009-01-01
资源大小:49k
文件大小:1k
源码类别:

3G开发

开发平台:

Java

  1. import java.util.*;
  2. import java.awt.Point;
  3. class Location_info {
  4.     Point es_p; /* estimated location */
  5.     Hashtable one_hop_list; /* one hop neighbor list */
  6.     Hashtable two_hop_list; /* two hop neighbor list */
  7.     Point[] sample_points; /* sample points */
  8.     int[] sample_weight; /* sample weights */
  9.     int sample_num; /* sample number */
  10.     int max_sample_num; /* maximum sample number */
  11.     float sample_range; /* the maximum distance between samples */
  12.     
  13.   
  14.    public Location_info() {
  15.     es_p = new Point();
  16.     one_hop_list = new Hashtable();
  17.     two_hop_list = new Hashtable();
  18.     max_sample_num = 50;
  19.     sample_num = 0;
  20.     sample_points = new Point[max_sample_num];
  21.     sample_weight = new int[max_sample_num];
  22.    }
  23.   
  24. }
  25.