数据结构课件

源代码在线查看: 算法5.11.txt

软件大小: 3019 K
上传用户: hanyuangu
关键词: 数据结构
下载地址: 免注册下载 普通下载 VIP

相关代码

				int Depth(GList ls)
				  {
				   if (!ls)
				     return  1;               /*空表深度为1*/
				   if (ls->tag = = 0)  
				     return  0;               /*单元素深度为0*/
				   for (max = 0,p = ls; p; p = p->ptr.tp) {
				     dep = Depth(p->ptr.hp);    /*求以p->ptr.hp尾头指针的子表深度*/
				     if (dep > max)  max = dep;
				    }
				   return max+1;            /*非空表的深度是各元素的深度的最大值加1*/
				  }
				算法5.11
							

相关资源