11 2021 档案

摘要:echo 'export PATH="/home/vip47/biosoft/samtools-1.9/bin:$PATH" ' >>~/.bashrc source ~/.bashrc 阅读全文
posted @ 2021-11-19 16:56 lhclqslove 阅读(106) 评论(0) 推荐(0)
摘要:struct myhash { int *s; ull *h,*qp; ll *p,len,*val; void init(vector<int> &path) { len=path.size(); for(int i=0;i<path.size();i++) { s[i+1]=path[i]; } 阅读全文
posted @ 2021-11-12 10:42 lhclqslove 阅读(36) 评论(0) 推荐(0)
摘要:struct point{ double x,y; point(double _x=0,double _y=0){ x=_x,y=_y; } point operator+ (const point& a) const{ return point(x+a.x,y+a.y); } point oper 阅读全文
posted @ 2021-11-11 11:25 lhclqslove 阅读(35) 评论(0) 推荐(0)
摘要:OpenMP中文教程 阅读全文
posted @ 2021-11-01 19:29 lhclqslove 阅读(64) 评论(0) 推荐(0)