2017/3/8 周三

GET

TIME ITEM RESULT
8:30-10:30 归并排序 写代码更加便于理解
10:30-12:00 MagicBook新功能 完成
14:00-16:00 MagicBook 修改MagicBookRender/ApplicationSession
  • 归并排序

public void static sort(int arry[],int left,int right){ if(left>=right){ return; } int mid = (left+right)/2; sort(arry,left,mid); sort(arry,mid+1,right); merge(arry,left,right,mid); } public void merge(int arry[],int left,int right,int mid){ int i = left; int j = mid+1; int k = 0; int temp[] = new int[right-left+1]; while(i<=mid&&j<=right){ if(arry[i]>arry[j]){ temp[k++] = arry[j++]; }else{ temp[k++] = arry[i++]; } } while(i<=mid){ temp[k++] = arry[i++]; } while(j<=right){ temp[k++] = arry[j++]; } for(int p = 0;p

  • MagicBook新功能:
    1.扫描界面计时。长时间未扫描提示用户扫描。
    2.去除了取词功能。
    3.相机预览界面修改为实际世界坐标系。
    4.预览config调为2倍。
    5.测试图改为上半页,识别速度有所提升。

TODO

  • MagicBook继续
  • 堆排序

你可能感兴趣的:(2017/3/8 周三)