软工:结对编程
Posted drac
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了软工:结对编程相关的知识,希望对你有一定的参考价值。
结对伙伴学号 | 201831061428 |
---|---|
结对伙伴姓名 | 钟宜轩 |
伙伴博客地址 | 博客 |
Github地址 | git |
PSP表格
PSP2.1 | Personal Software Process Stages | 预估耗时(分钟) | 实际耗时(分钟) |
---|---|---|---|
Planning | 计划 | 30 | 60 |
Estimate | 估计这个任务需要多少时间 | 40 | 30 |
Development | 开发 | 200 | 200 |
Analysis | 需求分析 (包括学习新技术) | 50 | 40 |
Design Spec | 生成设计文档 | 20 | 20 |
Design Review | 设计复审 (和同事审核设计文档) | 25 | 25 |
Coding Standard | 代码规范 (为目前的开发制定合适的规范) | 15 | 15 |
Design | 具体设计 | 100 | 80 |
Coding | 具体编码 | 600 | 630 |
Code Review | 代码复审 | 25 | 20 |
Test | 测试(自我测试,修改代码,提交修改) | 30 | 50 |
Reporting | 报告 | 30 | 20 |
Test Report | 测试报告 | 25 | 30 |
Size Measurement | 计算工作量 | 30 | 20 |
Postmortem & Process Improvement Plan | 事后总结, 并提出过程改进计 | 40 | 50 |
合计 | 1220 | 1290 |
遇到了很多困难,但也花费了很多时间去努力克服。虽然不是很完善,但我们确实尽力了。
讨论过程
设计实现过程
代码设计流程如下:
代码实现
#include<iostream>
#include<string>
#include<cstring>
#include<stdlib.h>
#include<ctype.h>
#include<fstream>
#define N 20
using namespace std;
/*定义结构体*/
typedef struct wenjian{
char data[N];
int shu;
struct wenjian *zuo;
struct wenjian *you;
}wenjian,*bwenjian;
class Word{//定义一个词汇的类
public:
Word();
int get_word(int start, int end, char* p, char* word);
void create_wenjian(char* m, bwenjian& b);
void Order(bwenjian b, FILE* q);
int sum;
int j;
int i;
char liang[N];
char liang1[N];
char word[N];
char fwen[20];
};
/*初始化*/
Word::Word()
{
sum = 0;
j = 0;
i = 0;
}
/*定义获取单词数的函数*/
int Word::get_word(int start, int end, char* p, char* word)
{
memset(word, 0, sizeof(char));
for ( i = start; i<end; i++)//使用循环读取文件
{
if (isalpha(p[i]))
{
word[j] = p[i];
j++;
}
else if (j == 0)
{
continue;
}
else
{
word[j] = '