Next Article in Journal
On Ulam Stability and Multiplicity Results to a Nonlinear Coupled System with Integral Boundary Conditions
Next Article in Special Issue
SRIFA: Stochastic Ranking with Improved-Firefly-Algorithm for Constrained Optimization Engineering Design Problems
Previous Article in Journal / Special Issue
First-Arrival Travel Times Picking through Sliding Windows and Fuzzy C-Means
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

A Novel Hybrid Algorithm for Minimum Total Dominating Set Problem

School of Computer Science and Information Technology, Northeast Normal University, Changchun 130000, China
*
Authors to whom correspondence should be addressed.
Mathematics 2019, 7(3), 222; https://doi.org/10.3390/math7030222
Submission received: 14 January 2019 / Revised: 20 February 2019 / Accepted: 24 February 2019 / Published: 27 February 2019
(This article belongs to the Special Issue Evolutionary Computation)

Abstract

:
The minimum total dominating set (MTDS) problem is a variant of the classical dominating set problem. In this paper, we propose a hybrid evolutionary algorithm, which combines local search and genetic algorithm to solve MTDS. Firstly, a novel scoring heuristic is implemented to increase the searching effectiveness and thus get better solutions. Specially, a population including several initial solutions is created first to make the algorithm search more regions and then the local search phase further improves the initial solutions by swapping vertices effectively. Secondly, the repair-based crossover operation creates new solutions to make the algorithm search more feasible regions. Experiments on the classical benchmark DIMACS are carried out to test the performance of the proposed algorithm, and the experimental results show that our algorithm performs much better than its competitor on all instances.

1. Introduction

Given an undirected graph G = ( V , E ) , a dominating set (DS) is a subset of vertices S V that each vertex in V \ S is adjacent to at least one vertex in S. For each vertex v V , vertex v must have a neigbor in S, and this dominating set is called a total dominating set (TDS). We can easily conclude that TDS is a typical variant of DS. The minimum total dominating set (MTDS) problem aims to identify the minimum size of TDS in a given graph. MTDS has many applications in various fields, such as sensor and ad hoc communications and networks as well as gateway placement problems [1,2,3].
MTDS is proven to be NP-hard (non-deterministic polynomial) [4], which means unless P = NP, there is no polynomial time to solve this problem. At present, Zhu proposed a novel one-stage analysis for greedy algorithms [5] with approximation ratio l n ( δ 0.5 ) + 1.5 where δ is the maximum degree of the given graph. This algorithm also used a super-modular greedy potential function, which was a desirable property in mathematics. However, in real life and industrial production, the size of problems is always very large. When the size of problems is increased [6,7,8,9], the approximation algorithm will be invalid. Considering these circumstances, researchers often use heuristic algorithms [10,11,12,13] to deal with these problems. Although the heuristic algorithms cannot guarantee the optimality of the solution they obtain, they can find high-quality solutions effectively within a reasonable time. Thus, in this paper we propose a hybrid evolution method combining local search and genetic algorithm (HELG) to solve MTDS.
Evolutionary algorithms include genetic algorithm, genetic programming, evolution strategies and evolution programming, etc. Among them, genetic algorithm as a classical method is the most widely used. Genetic algorithm is a computational model to simulate the natural selection and genetic mechanism of Darwin’s biological evolution theory. It is a method to search the optimal solution by simulating the natural evolution process. Genetic algorithm begins with a population representing the potential solution set of the problem, and a population consists of a certain number of individuals encoded by genes. After the first generation of the population, according to the principle of survival of the fittest, the evolution of generations produces more and better approximate solutions. In each generation, the selection is based on the fitness of the individual in the problem domain. Individuals, by means of genetic operators of natural genetics, perform crossovers and mutations to produce populations representing new solution sets.
Recently, evolutionary algorithms play an important role in solving optimization problems. It is common to adjust evolutionary algorithm to solve problems by adding a different problem-related mechanism. One possible improvement is the hybrid of evolutionary method and local search algorithm. Przewozniczek et al. investigated the pros and cons of hybridization on the baseof a hard practical and up-to-date problem and then proposed an effective optimization method for solving the routing and spectrum allocation of multicast flows problem in elastic optical networks [14]. Połap et al. proposed three proposition to increase the efficiency of classical meta-heuristic methods [15]. In this paper, the proposed algorithm takes advantage of local search framework as well as genetic algorithm.
Firstly, the algorithm creates a population including several individuals as initial solutions in our algorithm. Then, for each initial solution, we prove its solution via the local search. After local search, a repair-based crossover operation is proposed to improve the searchability of the algorithm. The algorithm randomly selects two solutions in the population and randomly exchanges several vertices of them. After crossover, if the obtained solutions are infeasible, the algorithm will repair them. This operation enables the algorithm to search larger areas, resulting in obtaining more feaisble solutions. In addition, we use a scoring function to help the method choose vertices more effective. In detail, each vertex is assigned to a cost value, and then we calculate the scoring value of every vertex by the cost value. The scoring function is used to measure the benefits of the state changing of a vertex. Whenever the algorithm swaps a pair of vertices, we should try to increase the benefits of the candidate solution and reduce the loss. This scoring value makes our algorithm efficient. When the original HELG fails to find improved solutions, this heuristic can make the algorithm escape from the local optimal.
Based on the above strategies, we design a hybrid evolutionary algorithm HELG for MTDS. Since we are the first to solve MTDS with a heuristic algorithm, in order to evaluate the efficiency of HELG, we carry out some experiments to compare HELG with a greedy algorithm and a classical metaheuristics algorithm, the ant colony optimization (ACO) algorithm [16,17] for MTDS. The experimental results show that on most instances our algorithm performs much better than the greedy algorithm.
The remaining sections are arranged as follows: in Section 2, we give some necessary notations and definitions. In Section 3, we introduce the novel scoring heuristic. The evolution algorithm HELG for MTDS is described in Section 4. Section 5 gives the experimental evaluations and the experimental results analysis. Finally, we summarize this paper and list future work.

2. Preliminaries

Given an undirected graph G = ( V , E ) with vertex set V and edge set E, each edge is a 2-element subset of V. For an edge e = ( u , v ) , vertices u and v are the endpoints of e, and u is adjacent to v. The distance between u and v means the number of edges from the shortest path of u to v and is defined by d i s t ( u , v ) . Then the ith level neighborhood of a vertex v is defined by N i ( v ) = { u | d i s t ( u , v ) = i } . Specifically, N ( v ) = N 1 ( v ) . The d e g r e e of a vertex v is d e g ( v ) = | N ( v ) | .
A set D of V is a dominating set if each vertex not in D is adjacent to at least one vertex in D. Total dominating set is a variant of dominating set. The definition of total dominating set is as follows.
Definition 1.
(total dominating set) Given an undirected graph G = ( V , E ) , a total dominating set (TDS) is a subset D of V that every vertex of G is adjacent to some vertices in D, whether it is in D or not.
The minimum total dominating set (MTDS) problem aims at identifying the TDS with the minimum size in a given graph.

3. Scoring Heuristic

In our algorithm, we need to maintain a total dominating set as a candidate solution C S during the construction and local search phases. It is important to decide which vertex should be added into or removed from C S . In this section, we will introduce an effective scoring heuristic that can be used to decide how to choose the vertices to be added and removed.
Given an undirected graph G = ( V , E ) , a cost value denoted by ω ( v ) is applied to each vertex v V , which will be maintained during the local search. For each vertex v V , ω ( v ) is initialized as 1 in the construction phase. In the local search phase, if C S uncovers the vertex v, the value of ω ( v ) will be increased by 1 such that these uncovered vertices will have more opportunities to be selected.
Based on the cost value described above, the vertex scoring method will be defined. We denote the scoring function as s, the scoring method is divided into two cases as follows:
  • v C S . The value of s ( v ) is the total cost value of vertices which will become dominated by C S after adding vertex v into C S .
  • v C S . The value of s ( v ) is the opposite number of the total cost value of vertices which will become not dominated by C S after removing vertex v from C S .
The vertex scoring method is used to measure the benefits of changing the state of v. Obviously, if v C S , s ( v ) 0 . Otherwise, s ( v ) 0 . This method can decide how to choose the vertices to be added and removed.

4. Evolution Algorithm HELG for MTDS

In this section, we propose a hybrid evolutionary algorithm combining local search and genetic algorithm. The algorithm includes three important phases: generation of a population including n initial solutions, local search, and a repair-based crossover operation.

4.1. Population Initialization

We first generate a population including n initial solutions. We use a preprocessing method and the restricted candidate list (RCL) to initialize a population. In the process of preprocessing, based on the definition of MTDS, if the degree of a vertex is 1, its neighborhood will be added into C S and forbidden to be removed from C S during the search. A function p r o b i d is used to implement this process. For a vertex v, if p r o b i d ( v ) = 1 , v will be forbidden to be removed from C S in the subsequent search. RCL contains the vertices with good benefits. The algorithm chooses vertices from RCL randomly to construct an initial candidate solution.
The pseudo code of construction phase is shown in Algorithm 1.
At first, the index k and population P o p are initialized (line 1). Then the n individuals are created (lines 2–18). For each individual, the scoring function s of each vertex, the p r o b i d value of each vertex and the candidate solution C S are initialized (lines 3–5). Then, the algorithm starts the preprocessing process (lines 6–9). If the degree of a vertex corresponds to 1, the algorithm adds its neighborhood into C S . Then the p r o b i d value of them will be assigned to 1 which means that they will be forbidden to be removed from C S in the following phase. The algorithm then enters a loop to add vertices into C S until it becomes a TDS (lines 10–16). The maximum value s m a x and the minimum value s m i n of s are calculated in lines 11 and 12. The vertices whose scoring values are not less than s m i n + μ ( s m a x s m i n ) comprise the RCL (line 13). Here, μ is a parameter that belongs to [0, 1]. Then we choose a vertex u from RCL randomly and add it into C S (lines 14–15). The scoring values of u and the 1st and 2nd level neighborhood are updated in line 16. Then the just created individual is added into the P o p (line 17). Then, k is updated in line 18. In the end, we return the population P o p (line 19).
Algorithm 1: create_population (n)
Mathematics 07 00222 i001

4.2. Local Search Phase

Several candidate solutions are built in c r e a t e _ p o p u l a t i o n phase. The local search phase explores the neighborhood of the initial candidate solution to improve the solution quality and obtain a smaller one. If no better solution is found, the algorithm will return the current solution as a local optimum. Otherwise, the improved solution will be the new best candidate solution. This phase is executed iteratively.
The pseudo code of local search phase is shown in Algorithm 2.
At the beginning of the algorithm, the number of iterations k and the local optimal solution C S * are initialized (line 1). Then the algorithm enters a loop until the maximum number of iterations m s t e p is reached (line 2). In the search process, once a better solution is found, the algorithm updates C S * by C S and removes a vertex with the highest s from C S (lines 3–9). The p r o b i d value of the selected vertex is forbidden to be 1. The number of iterations k is set to 0 (line 4). The scoring values of the just removed vertex and its 1st and 2nd level neighborhood are updated in line 8. Otherwise, the algorithm will remove a vertex v with the highest s and p r o b i d ( v ) 1 from C S , breaking ties randomly (line 9). The corresponding scoring values are updated in line 11. Subsequently, the algorithm selects a vertex with the highest score and adds it to C S (lines 12–13). After that, the cost value of each undominated vertex v and the scoring function of each v V are updated (lines 14–15). The step of iteration is increased by 1 (line 16). In the end, the algorithm returns C S * as a local optimal solution.
Algorithm 2: LocalSearch ( C S , m s t e p )
Mathematics 07 00222 i002

4.3. Repair-Based Crossover Operation

Genetic algorithms often use crossover to increase the diversity of the algorithm. The central role of biological evolution in nature is the recombination of biological genes (plus mutations). Similarly, the central role of genetic algorithms is the crossover operator of genetic algorithm. The so-called crossover refers to the operation of replacing the partial structure of two parent individuals to generate a new individual. Through crossover, the searchability of genetic algorithm has been greatly improved.
In this paper, we propose a repair-based crossover operation. After local search, our algorithm obtains an improved population. We choose two solutions from the population randomly, and then exchange the vertices in the two solutions with probability 0.5.
Because of the particularity of MTDS, the obtained solutions after crossover may be infeasible. So we should repair the infeasible solutions and make them become total dominating sets. After crossover, we check if the obtained solutions are total dominating sets. If a solution is infeasible, we add some reasonable vertices through population initialization phase until it is feasible. Then we perform a redundancy remove operation. For the solution obtained by crossover, we remove a vertex and check whether the solution is feasible. If it is feasible, the vertex will be removed, and otherwise it will be added back. The redundancy remove operation performs iteratively until every vertex has been checked.
The solution obtained by the repair-based crossover operation will replace the two old solutions into the population.

4.4. The Framework of HELG

In this paper, we propose a hybrid evolutionary algorithm HELG that combines local search and genetic algorithm. The algorithm first generates a population including n initial solutions, and then applies local search to improve each solution. The obtained n solutions will perform crossover to produce new solutions. This algorithm will perform iteratively until time limit is satisfied.
The framework of HELG is shown in Algorithm 3 and described as below.
Algorithm 3: HELG(G)
Mathematics 07 00222 i003
At first, the algorithm initializes the best solution C S * and a population P o p (lines 1–2). Then the algorithm performs a loop (lines 3–11). For each solution C S of P o p , we use local search to improve the quality of solution and if C S is better than C S * , C S * is updated by C S (lines 4–7). For the obtained n solutions, we perform the repair-based crossover operation to generate new solutions (line 8). If the best solution C S among P o p is better than C S * , C S * is updated by C S (lines 9–11) When the time limit is satisfied, the best solution C S * is returned (line 12).

5. Experiments

In this section, we carry out a series of experiments to evaluate the efficiency of our algorithm. The experiments are carried out on a classical benchmark DIMACS (the Center for Discrete Mathematics and Theoretical Computer Science) [18]. We select 61 instances in the DIMACS benchmark. The instances are from industry and generated by various models.
HELG is implemented in C++ and compiled by g++ with the -O3 option. We run the algorithm on a machine with Intel(R) Xeon(R) CPU E7-4830 @2.13Ghz and 4GB memory under Linux. For each instance, the HELG algorithm runs 30 times independently with different random seeds, until the time limit (100 s) is satisfied. HELG has three important parameters (i.e., n, μ and m s t e p ). In the population creation phase, we set the RCL parameter μ = 0.1 and n = 10 . In the local search phase, we set the maximum number of iterations m s t e p = 100 .
Since we are the first to solve MTDS with a heuristic algorithm, in order to evaluate the efficiency of HELG, a greedy algorithm is as our control method which uses the same scoring heuristic. At first, the candidate solution C S is empty. The greedy algorithm selects the vertex with the highest score value and adds it into C S every time. When C S becomes a TDS, the algorithm stops and returns C S as the optimal solution. Another comparison algorithm we use is a classical metaheuristics algorithm, the ant colony optimization (ACO) algorithm [16,17], which uses the same initialization procedure with our algorithm. We use this algorithm as a comparison algorithm to evaluate the effectiveness of our algorithm. For each instance, the ACO also runs 30 times independently with different random seeds, until the time limit (100 s) is satisfied.
For each instance, M I N is the minimum total dominating set found, A V G is the average size of 10 solutions, and T i m e is the running time when the algorithm gets the minimum total dominating set. Because the greedy algorithm is only executed once for each instance, it has no average value and the time is less than 1. Better solutions and time are expressed in bold.
The experimental results are shown in Table 1 and Table 2. Compared with the greedy algorithm, HELG can obtain better minimum solutions in 52 instances. In the remaining 9 instances, HELG gets the same minimum solutions with the greedy algorithm. Compared with ACO, HELG can obtain better minimum solutions in 40 instances. In the remaining 21 instances, HELG gets the same minimum size with ACO. Among them, HELG gets better average values than ACO in 16 instances, and gets the same average value with ACO but performs faster in 5 instances. The DIMACS benchmark is divided into 10 groups. We choose 1 instance from every group. Every instance is run 30 times independently. The visualized comparisons of ACO and HELG can be seen by Kolmogorov-Smirnov test in Figure 1, which shows the distribution of the total dominating set values. From these, we can observe that HELG performs much better than ACO and greedy algorithm.
To further illustrate the efficiency contribution of our algorithm, we show the time-to-target plot [12,19] in Figure 2 to compare HELG with ACO on brock400_4 and its target 14. To obtain the plot, we performed 100 independent runs of each algorithm on brock400_4. The figure shows that the probabilities of finding a solution of the target value by HELG are approximately 30% and 70% in at most 13.78 and 33.43 s, respectively, whereas the probabilities of finding a solution of the target value by ACO are approximately 30% and 70% in at most 23.62 and 43.47 s respectively, considerably longer than HELG. From that, we can observe that the strategies we used in HELG are very effective.
The experimental results show that our algorithm performs much better than the comparison algorithms. This proves that the genetic algorithm and local search in our algorithm are both very effective.

6. Summary and Future Work

This paper proposes a hybrid evolutionary algorithm combining local search and genetic algorithm to solve MTDS. A scoring heuristic is used to improve the efficiency of the algorithm. In the population initialization phase, we create a population including several initial solutions. In the local search phase, the algorithm improves the initial solutions by adding and removing operations. After that, we propose a repair-based crossover operation to increase the diversity of our algorithm. A series of experiments are carried out to evaluate the algorithm. The experimental results show that HELG performs well in solving MTDS.
In the future, we would like to design more efficient evolutionary algorithms to solve MTDS. We would like to relax this problem, such as the found MTDS is missing the adjacency of one vertex. We will study evolutionary algorithms in more MDS-related problems, for example, the multi-objective MDS optimization problem.

Author Contributions

Software, X.G. and C.L.; Methodology, F.Y. and Y.W.; Writing–original draft preparation, F.Y. and C.L.; Writing—review and editing, C.L. and M.Y.

Funding

This research and the APC was supported by the Fundamental Research Funds for the Central Universities 2412018QD022 and Education Department of Jilin Province JJKH20190289KJ, NSFC (under grant nos. 61502464, 61503074, 61806050) and China National 973 Program 2014CB340301.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Subhadrabandhu, D.; Sarkar, S.; Anjum, F. Efficacy of misuse detection in ad hoc networks. In Proceedings of the 2004 First IEEE Communications Society Conference on Sensor and Ad Hoc Communications and Networks, IEEE SECON 2004, Santa Clara, CA, USA, 4–7 October 2004; pp. 97–107. [Google Scholar]
  2. Aoun, B.; Boutaba, R.; Iraqi, Y.; Kenward, G. Gateway Placement Optimization in Wireless Mesh Networks With QoS Constraints. IEEE J. Sel. Areas Commun. 2006, 24, 2127–2136. [Google Scholar] [CrossRef]
  3. Chen, Y.P.; Liestman, A.L. Approximating minimum size weakly-connected dominating sets for clustering mobile ad hoc networks. In Proceedings of the International Symposium on Mobile Ad Hoc Networking and Computing, Lausanne, Switzerland, 9–11 June 2002; pp. 165–172. [Google Scholar]
  4. Garey, M.R.; Johnson, D.S. Computers and Intractability: A Guide to the Theory of NP-Completeness; W.H. Freeman and Company: New York, NY, USA, 1990. [Google Scholar]
  5. Zhu, J. Approximation for minimum total dominating set. In Proceedings of the International Conference on Interaction Sciences: Information Technology, Culture and Human, Seoul, Korea, 24–26 November 2009; pp. 119–124. [Google Scholar]
  6. Cai, S.; Su, K.; Luo, C.; Sattar, A. NuMVC: An efficient local search algorithm for minimum vertex cover. J. Artif. Intell. Res. 2013, 46, 687–716. [Google Scholar] [CrossRef]
  7. Ping, H.; Yin, M.H. An upper (lower) bound for Max (Min) CSP. Sci. China (Inf. Sci.) 2014, 57, 1–9. [Google Scholar]
  8. Cai, S.; Lin, J.; Luo, C. Finding A Small Vertex Cover in Massive Sparse Graphs: Construct, Local Search, and Preprocess. J. Artif. Intell. Res. 2017, 59, 463–494. [Google Scholar] [CrossRef]
  9. Wang, Y.; Cai, S.; Yin, M. Two Efficient Local Search Algorithms for Maximum Weight Clique Problem. In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence, Phoenix, AZ, USA, 12–17 February 2016; pp. 805–811. [Google Scholar]
  10. Wang, Y.; Cai, S.; Chen, J.; Yin, M. A Fast Local Search Algorithm for Minimum Weight Dominating Set Problem on Massive Graphs. In Proceedings of the Twenty-Seventh International Joint Conference on Artificial Intelligence (IJCAI-18), Stockholm, Sweden, 13–19 July 2018; pp. 1514–1522. [Google Scholar]
  11. Wang, Y.; Cai, S.; Yin, M. Local search for minimum weight dominating set with two-level configuration checking and frequency based scoring function. J. Artif. Intell. Res. 2017, 58, 267–295. [Google Scholar] [CrossRef]
  12. Wang, Y.; Li, C.; Sun, H.; Yin, M. MLQCC: An improved local search algorithm for the set k covering problem. Int. Trans. Oper. Res. 2019, 26, 856–887. [Google Scholar] [CrossRef]
  13. Wang, Y.; Cai, S.; Yin, M. New heuristic approaches for maximum balanced biclique problem. Inf. Sci. 2018, 432, 362–375. [Google Scholar] [CrossRef]
  14. Przewozniczek, M.W.; Walkowiak, K.; Aibin, M. The evolutionary cost of baldwin effect in the routing and spectrum allocation problem in elastic optical networks. Appl. Soft Comput. 2017, 52, 843–862. [Google Scholar] [CrossRef]
  15. Połap, D.; Kęsik, K.; Woźniak, M.; Damaševičius, R. Parallel Technique for the Metaheuristic Algorithms Using Devoted Local Search and Manipulating the Solutions Space. Appl. Sci. 2018, 8, 293. [Google Scholar] [CrossRef]
  16. Romania, Q.S. Ant colony optimization applied to minimum weight dominating set problem. In Proceedings of the 12th WSEAS International Conference on Automatic Control, Modelling & Simulation, Catania, Italy, 29–31 May 2010. [Google Scholar]
  17. Dorigo, M.; Stützle, T. Ant Colony Optimization. In Proceedings of the 1999 Congress on Evolutionary Computation-CEC99 (Cat. No. 99TH8406), Washington, DC, USA, 6–9 July 1999; pp. 1470–1477. [Google Scholar]
  18. Johnson, D.S.; Trick, M.A. Cliques, Coloring, and Satisfiability: Second DIMACS Implementation Challenge, October 11–13, 1993; American Mathematical Soc.: Providence, RI, USA, 1996; Volume 26. [Google Scholar]
  19. Aiex, R.M.; Resende, M.G.; Ribeiro, C.C. TTT plots: A perl program to create time-to-target plots. Optim. Lett. 2007, 1, 355–366. [Google Scholar] [CrossRef]
Figure 1. The total dominating set values obtained by ⋯: ACO; −: HELG. Kolmogorov-Smirnov test can be applied to display the distribution of these values.
Figure 1. The total dominating set values obtained by ⋯: ACO; −: HELG. Kolmogorov-Smirnov test can be applied to display the distribution of these values.
Mathematics 07 00222 g001
Figure 2. Time-to-target plot comparing HELG with ACO on instance brock400_4 and its target 14.
Figure 2. Time-to-target plot comparing HELG with ACO on instance brock400_4 and its target 14.
Mathematics 07 00222 g002
Table 1. Experimental results of greedy algorithm, ACO, and HELG on DIMACS I. The better minimum or average solution values are in bold.
Table 1. Experimental results of greedy algorithm, ACO, and HELG on DIMACS I. The better minimum or average solution values are in bold.
InstancesVerticesEdgesGreedyACOHELG
MINTimeMINAVGTimeMINAVGTime
brock200_220010,0247<1660.3660.21
brock200_4200681110<1992.28991.93
brock400_240020,01419<11616.36.2815155.39
brock400_440020,03519<11416.334.61415.125.16
brock800_2800111,43415<11314.215.21212.310.5
brock800_4800111,95718<11516.27.6313136.75
c-fat200-1.CLQ200153423<1222248.622020.343.93
c-fat200-2.CLQ200323512<110118.4510104.02
c-fat200-5.CLQ20084735<155.313.51442.46
c-fat500-1.CLQ500445953<15051.220.734748.110.41
c-fat500-2.CLQ500913926<12425.979.622323.574.99
c-fat500-5.CLQ50023,19110<19911.12998.08
C1000.9100049,42147<14545.668.454444.364.97
C125.912578730<1212245.22021.138.16
C2000.52000999,1649<1101046.799.543.37
C2000.92000199,46852<15152.417.895051.611.64
C250.9250314133<1282980.342728.276.81
C4000.540003,997,73211<11112.4160.81111.6154.97
C500.950012,41839<13738.397.73436.691.68
DSJC1000.51000249,6749<189.111.688.87.38
DSJC500.550062,1269<18827.8477.424.5
gen200_p0.9_44200199033<12627.277.12626.676.25
gen200_p0.9_55200199031<12930.278.652526.271.54
gen400_p0.9_55400798038<13535.553.2343551.65
gen400_p0.9_65400798038<1333566.43334.358.49
gen400_p0.9_75400798038<1353627.53335.220.4
hamming10-4102489,60023<1232345.22122.641.77
hamming6-26419219<11516.239.71515.635.86
hamming6-46413123<1330.01330.01
hamming8-2256102469<1636517.96264.411.33
hamming8-425611,7769<167.259.666.557.68
Table 2. Experimental results of greedy algorithm, ACO, and HELG on DIMACS II. The better minimum or average solution values are in bold.
Table 2. Experimental results of greedy algorithm, ACO, and HELG on DIMACS II. The better minimum or average solution values are in bold.
InstancesVerticesEdgesGreedyACOHELG
MINTimeMINAVGTimeMINAVGTime
johnson16-2-4120168011<11011.232.61010.430.72
johnson32-2-449614,88024<12324.534.82323.533.38
johnson8-2-4281685<155.80.01550
johnson8-4-47056012<18816.4377.59.81
keller417151008<18810.4577.44.52
keller577674,71016<117178.281516.52.16
keller633611,026,58230<13030.861.22929.654.68
MANN_a27378702113<17577.4100.636779.581.69
MANN_a451035198090<190903.2590900.03
MANN_a8133216480162<11621631.281621620.17
MANN_a9457220<11618.640.51616.834.05
p_hat1500-1.CLQ1500839,32726<12426.726.52424.518.01
p_hat1500-2.CLQ1500555,29011<11314.198.689.287.62
p_hat1500-3.CLQ1500277,0065<156.163.244.959.48
p_hat300-1.CLQ30033,91716<11718.4126.31415.297.86
p_hat300-2.CLQ30022,9226<1774.5866.50.54
p_hat300-3.CLQ30011,4604<14535.4833.131.86
p_hat700-1.CLQ700183,65121<1212174.69172064.01
p_hat700-2.CLQ700122,9229<1111354.31810.248.35
p_hat700-3.CLQ70061,6404<1456.4344.43.25
san10001000249,0006<1788.4566.54.73
san200_0.7_120059709<1896.788.81.57
san200_0.7_2200597010<199.475.1277.963.8
san200_0.9_1200199029<1242430.52223.925.07
san200_0.9_2200199030<12727.886.52425.977.4
san200_0.9_3200199031<12727.645.652526.634.13
san400_0.5_140039,9005<1668.4145.42.12
san400_0.7_140023,94013<1131327.4910.519.49
san400_0.7_240023,94011<11011100.6910.792.22
san400_0.7_340023,94014<11213.187.451010.869.77

Share and Cite

MDPI and ACS Style

Yuan, F.; Li, C.; Gao, X.; Yin, M.; Wang, Y. A Novel Hybrid Algorithm for Minimum Total Dominating Set Problem. Mathematics 2019, 7, 222. https://doi.org/10.3390/math7030222

AMA Style

Yuan F, Li C, Gao X, Yin M, Wang Y. A Novel Hybrid Algorithm for Minimum Total Dominating Set Problem. Mathematics. 2019; 7(3):222. https://doi.org/10.3390/math7030222

Chicago/Turabian Style

Yuan, Fuyu, Chenxi Li, Xin Gao, Minghao Yin, and Yiyuan Wang. 2019. "A Novel Hybrid Algorithm for Minimum Total Dominating Set Problem" Mathematics 7, no. 3: 222. https://doi.org/10.3390/math7030222

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop