Skip to main content

Table 1 SPRINT algorithm flow

From: Data classification algorithm for data-intensive computing environments

Function Partition(DataSet S){S:training set}

Begin

If (all sS the same mark) then

Return;

Foreach aA Do

calculate column attribute a

split S into S1 and S2 using the best split attribute

Partition(S1);

Partition(S2);

End SPRINT