资源简介
主要是检查作业是否有抄袭情况,他可以读取txt格式的文本,是用c++写的
代码片段和文件信息
#include “cpd.h“
using namespace std;
// Debug functions
/*
void OutputHashTable(HawkEye he long Key)
{
cout << “==Outputting Hash Table==“ << endl;
FileBlock *ndPtr= he.HashTable[Key];
while( ndPtr != NULL ){
cout << ndPtr->HashKey << endl;
ndPtr= ndPtr->Next;
}
cout << “==Output Completed==“ << endl;
}
*/
void HawkEye::OutputFileBlock(FileBlock *ndPtr)
{
#ifdef DEBUGFUNCTION
if(ndPtr == NULL)
cout << “Current FileBlock is NULL!!!“ << endl;
else{
cout << “==Outputting File Block==“ << endl;
cout << “StartPoint: “ << ndPtr->StartPoint << endl;
cout << “Length: “ << ndPtr->Length << endl;
cout << “FileName: “ << ndPtr->FileName << endl;
cout << “HashKey: “ << ndPtr->HashKey << endl;
cout << “==Output Completed==“ << endl;
}
#endif
/*
cout << “==========Hash table statistic===========“ << endl;
for(i= 0; i< MAX; i++){
FileBlock *fbp= HashTable[i];
int counter= 0;
while( fbp != NULL ){
counter++;
fbp=fbp->Next;
}
cout << i << ‘:‘ << counter << endl;
}
*/
}
/*
void Scan(long key)
{
FileBlock *ndPtr= HashTable[key];
int Counter= 0;
while( ndPtr != NULL ){
Counter++;
ndPtr= ndPtr->Next;
}
cout << “Scanning completed 1003 has “ << Counter << “ elements.“ << endl;
}
*/
// Independent function
// Repo
string HawkEye::Suck(FileBlock *fbp)
{
#ifdef DEBUG_Suck
cout << “To Be Sucked: “ << endl;
OutputFileBlock(fbp);
#endif
string ToBeReturned= ““;
fstream fin;
fin.open( (fbp->FileName).c_str() fstream::in );
if( !fin.good() )
cout << “Open file error in Suck()“ << endl;
fin.seekg(fbp->StartPoint);
char ch;
for(i= 0; i< fbp->Length; i++){
fin.read( &ch sizeof(char) );
ToBeReturned+= ch;
}
fin.close();
#ifdef DEBUG_Suck
cout << “Sucked Out: “ << ToBeReturned << endl;
#endif
return ToBeReturned;
}
string HawkEye::GetFileName(string AbsPath)
{
int dashpos dotpos;
dashpos= AbsPath.rfind(‘/‘);
if(dashpos == (int)string::npos)
//! If it is already the relative path
dashpos= -1;
dotpos= AbsPath.rfind(‘.‘);
return AbsPath.substr(dashpos+1 dotpos-dashpos-1);
}
string HawkEye::GetSuffix(string AbsPath)
{
unsigned int dashpos dotpos;
dotpos= AbsPath.rfind(‘.‘);
if(dotpos == string::npos)
return ““;
dashpos= AbsPath.rfind(‘/‘);
if(dashpos == string::npos)
//! If it is already the relative path
dashpos= 0;
return ‘.‘ + AbsPath.substr(dotpos+1 AbsPath.size()-dotpos-1);
}
// Independent function
int HawkEye::LCS(string astr string bstr)
{
/*
unsigned int asize= astr.size()
bsize= bstr.size();
int counter[asize+1][bsize+1];
for(i= 1; i<= asize; i++)
counter[i][0]= 0;
for(i= 0; i<= bsize; i++)
counter[0][i]= 0;
for(i= 1; i<= asize; i++)
for(j= 1; j<= bsize; j++)
if( astr[i-1] == bstr[j-1] )
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 835 2008-07-24 21:21 trunk\a.txt
文件 15546 2008-07-24 22:28 trunk\cpd.cpp
文件 3292 2008-07-24 21:49 trunk\cpd.h
文件 158813 2008-07-24 22:28 trunk\cpd.o
文件 734 2008-07-24 20:52 trunk\main.cpp
文件 121933 2008-07-24 20:52 trunk\main.o
文件 945 2008-07-24 22:28 trunk\Makefile.win
文件 1567 2008-07-24 20:48 trunk\my.txt
文件 1084 2008-07-24 21:11 trunk\mysecond.txt
文件 827 2008-07-24 21:21 trunk\Repository\a
文件 22 2008-07-24 21:21 trunk\Repository\filelist.lst
文件 21631 2008-07-24 21:21 trunk\Repository\hstb.txt
文件 1551 2008-07-24 20:53 trunk\Repository\my
文件 1076 2008-07-24 21:11 trunk\Repository\mysecond
文件 827 2008-07-25 15:36 trunk\Repository\t.tmp
文件 1058 2008-07-24 19:48 trunk\trunk.dev
文件 650575 2008-07-24 22:28 trunk\trunk.exe
目录 0 2008-07-24 21:21 trunk\Repository
目录 0 2008-07-24 22:28 trunk
----------- --------- ---------- ----- ----
982316 19
相关资源
- VC++ MFC入门精讲.PPT
- 数据结构校园导航系统
- 国际象棋c++完整版
- 课程设计-学生成绩管理系统设计C++
- C++数值算法头文件
- 飞机订票系统.rar
- C++实现opencv+yolo+tensorflow+deepsort.txt
- 倍福+虚拟机+twincat.txt
-
ros move_ba
se中多个导航点的c++实现 - C++程序和C#程序通讯例程
- 自动寻路贪吃蛇C++源码
- 教职工信息管理系统-结课作业C++
- nozzle.cpp
- C++删除指定文件夹下N天及之前日志文
- C++实现简易文本编辑器
- 使用C++实现迷宫游戏
- C++实现银行排队系统
- linux环境下模拟实现简单命令解释器
- stdafx.h头文件
- VC++串口操作的代码及文档
- C++课程设计影碟出租管理
- Visual c++ 网络编程 郑阿奇
- 银行家算法源程序包含C语言+C++两种代
- 吕鑫VS2015之C.C++.MFC完整视频
- C++图书管理系统 C++图书管理系统
- VC++病毒编程入门
- PBIL算法源代码C++
- c++ 屏幕截图源程序,这个截图程序思
- C++ Builder利用PDFLib生成PDF文档
- ICP算法源代码拿走不谢
评论
共有 条评论