Skip to content

基于邻接矩阵初等变换算法的图同构识别

Notifications You must be signed in to change notification settings

HauyuChen/Graph-Isomorphism

Repository files navigation

Graph-Isomorphism

基于邻接矩阵初等变换算法的图同构识别

邻接矩阵算法复杂度分析

  • 最好情况: 每一行都互相对应,所以复杂度为:3n^2+3n^3+8n^2,时间复杂度为O(n^3)。
  • 最差情况: 每一行都与最后一行对应,所以复杂度为:3n^2+3n^3+8nn!,时间复杂度为O(nn!)。
  • 平均时间复杂度为O(n*n!)

备注

算法详细分析参见目录下的PDF文件

About

基于邻接矩阵初等变换算法的图同构识别

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages