Design
plagiar.txt
Associated article: Detecting Source-Code Plagiarism
Tags: Design
Published source code accompanying the article by Bob Zeidman in which he examines the tools and algorithms for uncovering plagiarism in source code. Also see CODEMATCH_DEMO_INSTALL.EXE.
Detecting Source-Code Plagiarism
by Bob Zeidman
Figure 1:
(a)
if (x == 5)
{
// Loop on j here
for (j = 0; j < Index; j++)
printf("x = %i", j);
}
else
while (i < 5) i++;
(b)
CONDITIONAL_BEGIN
LOOP_BEGIN
DISPLAY
LOOP_END
CONDITIONAL_...


