美文网首页
weekly_report_03_19_jianjian Wu

weekly_report_03_19_jianjian Wu

作者: M遇见 | 来源:发表于2015-03-20 10:05 被阅读0次

Spring 2015 Report #020 – 03/19/15 JianjianWu

I. Plan for next week(***, **, *: order of priority)

• 60%:Complete sixty percent code about Alpha algorithm

• 40%:Read two paper about process mining

II. Tasks achieved this week(***, **, *: order of priority)

• 70%:Write code about Alpha algorithm

• 30%: Read one paper about process mining

III.Feedback of Prof. Qiu Prof. Li and Dr. Yan last week

• Write blog

• Weekly report could be more detail

IV. Reports

One part of code about Alpha algorithm :

#include <stdio.h>

#include<string>

//#include "file.h"

int main()

{

char t[30],line[256];

FILE *fp;

fp=fopen("test.txt","rw+");

int i,j,l,a[30][30],lines=0,b[50];

while(!feof(fp))

{fgets(line,256,fp);

lines++;

}

rewind(fp);

// printf("%d\n",lines);

for(i=0;i<30;i++)

for(j=0;j<30;j++)

a[i][j]=0;

for (i=0;i<30;i++)

for (j=0;j<30;j++)

    a[i][j]=0;

for (i=0;i<lines;i++)

{

  fscanf(fp,"%s",t);

      l=strlen(t);

for (j=0;j<l;j++)

{

 a[t[j]-65][t[j+1]-65]+=1;

}

}

for (i=0;i<l;i++)

{

for (j=0;j<l;j++)

{

      if(a[i][j]==a[j][i])

      {

      a[i][j]=0;

      a[j][i]=0;

     }

}

}

for (i=0;i<l;i++)

{

for (j=0;j<l;j++)

{

printf("%d",a[i][j]);

printf("\n");

}

while(1);

return 0;

}

V. Mile-Stone:

• Implement Alpha algorithm

• Complete one paper about process mining

相关文章

  • weekly_report_03_19_jianjian Wu

    Spring 2015 Report #020 – 03/19/15 JianjianWu I. Plan for...

  • Wu

    层层叠叠意窜云 条条线线棱角明 黑黑白白竟相争 为此百寸奋百年

  • wu

    趣店现象分析 趣店集团经营业务: 趣店的前身是趣分期,也就是我们在 14 年在学校看到校园带贷。 趣店集团时间轴上...

  • wu

    “要不是因为有雾,我们就能看到海湾对面你的家。”盖茨比说,“你那边码头的总有一盏通宵不灭的绿灯。”

  • wu

    正文 - 你好

  • wu

    我希望我还走慢点 不仅看见树荫庇护下草头上的斑驳 更能看到斑驳间依稀的叶影 还能看见树枝下悬丝而挂的小虫儿 ...

  • wu

    神马?又双叒叕过情人节? 对!你没看错! 今天就是传说中的白色情人节了! 仿佛看到了女票在对自己说 坑爹哪! 妇女...

  • wu

    有些事情经历了就知道不该介入了,有些人熟悉了才知道不该继续,有些信任发生了才知道不该太单纯。 于是,相信很多人的坚...

  • wu

    我曾经去过南美洲苏里南共和国,热带雨林奇特的风光给我留下了美好的记忆。 蓝天白云,鸟语花香,还有一条亚马孙河的支流...

  • 话说Wu Yifan变为Wu Binbin

    今天听说小学英语课本上的Wu Yifan变成了Wu Binbin,我觉得这个消息不可信,吴某凡案件刚发生时,针对课...

网友评论

      本文标题:weekly_report_03_19_jianjian Wu

      本文链接:https://www.haomeiwen.com/subject/rhkvtttx.html