4.2 Algorithm for <i>d</i> <inline-formula> <math display="inline" id="MA193"><mo>⩾</mo></math></inline-formula>3
In the scenario of
, the method of computing the MCIs used in the case of
, i.e., determining the largest value in one dimension and then going through the values on the other dimension, is unavailable any more. This is because in the case of
, after computing the maximal value in one dimension, it is hard to determine the remaining values of a skyline community on other dimensions.
Our algorithm uses a similar dimension reduction idea as that in the algorithm given in Ref. [
7
]. But here we need to implement the algorithm based on the MCIs, rather than some specific nodes. Basically, we first fix one dimension and derive all possible values on the dimension. Then, for each possible value on the fixed dimension, the algorithm invokes itself with dimensional parameter
to compute the
-dimensional skyline communities. By checking whether the CI of these skyline communities is MCI, all
-dimensional skyline communities are finally found.
The detailed implementation of our algorithm is shown in Algorithm 3. Similar to Algorithm 2, the MaxCI method is first invoked to calculate the maximum
value of maximal
-cores on the
-th dimension, denoted by
(Line 6). Let
denote the set of all possible values on the
-th dimension. For each value
with
, the algorithm invokes itself to compute
-dimension skyline communities, after deleting all nodes with
(Lines 7-14). When the dimension is reduced to 2, Algorithm 2 is invoked to compute
-dimensional skylines (Lines 2 and 3). After determining the value of each dimension in the above procedure, it is then checked whether the CI composed by these values is maximal. Once an MCI is determined, its corresponding skyline communities are then found.
Theorem 3 For
, Algorithm 3 can find all skyline communities, and the time complexity is
.
Proof For each CI generated in the algorithm, algorithm MICS will determine whether it is dominated by previous MCIs, and all possible combinations of
have been considered, so it is ensured that all MCIs have been found. According to each MCI, corresponding skyline communities are computed simultaneously. Hence, all skyline communities are finally found. We next discuss the time complexity of algorithm MICS.
In each dimension reduction process, the algorithm with a smaller dimension parameter is invoked for at most
times, and in general
. When
is reduced to 2, Algorithm 2 is invoked, which takes
time. Hence, the total time consumed is upper bounded by
.
As shown in Theorem 3, though Algorithm 3 can perfectly solve the skyline community search problem, its time complexity is unacceptable, which increases exponentially with the increase of the number of dimensions. Hence, we subsequently present an algorithm that can compute important skyline communities, while significantly reduce the time complexity, by considering only a fixed number of dimensions when computing the skyline communities.