图的十字链表

图的十字链表

图的十字链表就是图的邻接表和逆邻接表结合在一起的东西,比较方便在查找一个结点的出度和入度
</br>采用的是数组加链表的形式,首先现在结点构造的数组中填入结点,然后在采用链表的方法在每个结点后面添加相应的边。
边就是两个结点的组成的集合嘛。
&#8195那首先要构造两个数据类型,一个是链表的,一个是数组的嘛;如下

image.png

数组的结构体定义如下:

image.png

这个就是由很多个单链表组成的。

基本思想如下:

首先要有一找寻顶点在数组中位置的函数。用户输入顶点数首先先初始化数组,然后用户出入边数,根据边数来创建,用户输入一条边的两个顶点,通过函数找到位置,创建一个新的node,然后让node初始化node,连接,创建一个树,就好了。代码如下:

//  main.cpp
//  十字链表
//
//  Created by 橘子和香蕉 on 2018/11/24.
//  Copyright © 2018 橘子和香蕉. All rights reserved.
//
/*
在开发中遇到的问题:
1:在添加结点的时候,开始时候要查找结点在数组中的位置,若是没有那就添加,找结点位置函数返回值是-1;,我遇到的问题是在添加新结点的时候结点的位置没有更新这个结点在数组中的位置 ,讲-1添加进去了。
2删除结点中遇到的问题,首先要分为两个方面
  a:如果结点在第一个位置,怎么删除
  b:结点在不在第一个位置,怎么删除
删除其实就是单链表中的删除操作,用两个指针一个在前,一个在后的,遍历链表删除。
*/
#include <iostream>
using namespace std;
#define  MAXSIZE 100
#define dataType char
typedef struct node{
  int tail;//弧尾在数组中的位置
  int head;//弧首在数组中的位置
  node *tailNode;//以这个顶点为弧尾的下一条的位置
  node *headNode;//以这个顶点为弧头的下一天的位置
  int info;//权重
}node;
typedef struct Box{
  dataType data;
  node *in;//入度
  node *out;//出读
}Box;
class Graph{
private:
  Box base[MAXSIZE];
  int vertexNum;
  int edgeNum;
#pragma private mathod
  int locate(dataType x);//定位
public:
  void init(int vertexNum,int edgeNum);//初始化结点个数和边的个数
  void create();//创建图
  int indegree(dataType x);//入度
  int outdegree(dataType x);//出度
  void addEdge(dataType start,dataType end,int wieght);//添加一条边
  void deleteEdge(dataType start,dataType end);//删除一条边
  void printNode(dataType  data,bool isIn);
  void printBase();
};
#pragma 公有函数声明开始
void Graph::init(int vertexNum, int edgeNum){
  this->vertexNum = vertexNum;
  this->edgeNum = edgeNum;
}
int Graph::locate(dataType x){
  for (int i = 0; i<vertexNum; i++) {
      if(base[i].data == x){
          return I;
      }
  }
  return -1;
}
void Graph::create(){
  cout<<"input Graph node data \n";
  for (int i = 0; i<vertexNum; i++) {
      cin>>base[i].data;
      base[i].in = base[i].out = NULL;
  }
  cout<<"input Graph node Start  node and en node:\n";
  dataType start,end;
  int wieght;
  int startPosition,endPosition;
  node *p;
  
  for (int i = 0; i<edgeNum; i++) {
      cout<<"input edge start and end and wieght:\n";
      cin>>start>>end>>wieght;
      startPosition = locate(start);
      endPosition = locate(end);
      p = new node;
      p->info = wieght;
      p->tail = startPosition;
      p->head = endPosition;
      
      p->tailNode = base[startPosition].out;
      base[startPosition].out = p;
      p->headNode= base[endPosition].in;
      base[endPosition].in = p;
      
  }
  cout<<"create finish\n";
}
int  Graph::indegree(dataType x){
  int count = 0;
  node*p =base[ locate(x) ].in;
  while (p != NULL) {
      count++;
      p = p->headNode;
  }
  
  return count;
}
int Graph::outdegree(dataType x){
  int count = 0;
  node*p = base[locate(x)].out;
  while ( p != NULL) {
      count++;
      p = p->tailNode;
  }
  return count;
}
void  Graph::addEdge(dataType start, dataType end, int wieght){
  int startPosition = locate(start);
  int endPostion = locate(end);
  if(startPosition == -1){//返回值为-1,说明这个结点还没有在数组中,先是要添加,然后顶点数+1;边数+1;
      base[vertexNum].data = start;
      base[vertexNum].in = base[vertexNum].out = NULL;
      init(vertexNum+1, edgeNum+1);
  }
  if(endPostion == -1){
      base[vertexNum].data = end;
      base[vertexNum].in = base[vertexNum].out = NULL;
      init(vertexNum+1, edgeNum+1);
  }
  if(startPosition == -1 && endPostion == -1){
      //        两个顶点都没有在数组中,那添加之后顶点个数+2.边数+1;
      base[vertexNum].data = start;
      base[vertexNum].in = base[vertexNum].out = NULL;
      
      base[vertexNum].data = end;
      base[vertexNum].in = base[vertexNum].out = NULL;
      init(vertexNum+2, edgeNum+1);
  }
  
  node *p = new node;
  p->info = wieght;
  p->tail = startPosition;
  p->head = vertexNum-1;
 
  
  p->tailNode = base[startPosition].out;
  base[startPosition].out = p;
  p->headNode = base[endPostion].in;
  base[endPostion].in = p;
}

void Graph::deleteEdge(dataType  start , dataType end){
  int startPostion = locate(start);
  int endPostion = locate(end);
  if(startPostion == -1 || endPostion == -1){
      cout<<"can't not find edge\n";
      return;
  }
  node *nout = base[startPostion].out;
  node  *Hnout = base[startPostion].out;
  
 
  node *nin = base[endPostion].in;
  node *Hnin = base[endPostion].in;
  int num = 0;
  while (nout != NULL) {
      if(num == 0 && nout->tail == startPostion && nout->head == endPostion){
          base[startPostion].out = nout->tailNode;
          Hnout = nout;
          nout = nout->tailNode;
          continue;
      }
      if(nout->tail == startPostion && nout->head == endPostion){
          Hnout->tailNode = nout->tailNode;
          break;
      }
      num++;
      Hnout = nout;
      nout = nout->tailNode;
  }
  num=0;
  while (nin != NULL) {
     
      if(num == 0 && nin->tail == startPostion && nin->head  == endPostion){
          base[endPostion].in = nin->headNode;
          Hnin = nin;
          nin = nin->headNode;
          continue;
      }
      else if(nin->tail == startPostion && nin->head  == endPostion ){
          Hnin->headNode = nin->headNode;
          delete nin;
          break;
      }
      num++;
      Hnin = nin;
      nin = nin->headNode;
  }
  
}


void Graph::printNode(dataType data,bool isIn){
  cout<<"printNode++++++++++++++++++++++++++++++++\n";
  int position = locate(data);
  if(position == -1){
      cout<<"input error\n";
      return;
  }
  node *p = nullptr;
  isIn?(p = base[position].in):(base[position].out);
  while (p!= NULL) {
      cout<<"node start:"<<base[p->tail].data<<"\t"<<"node end"<<base[p->head].data<<"\t"<<"node weight:"<<p->info<<"\n";
      isIn? p = p->headNode:p = p->tailNode;
  }
  cout<<"printNode_________________________________\n";
}
void Graph::printBase(){
  cout<<"PrintBse +++++++++++++++++++++++++++++++++++++\n";
  for (int i = 0; i<vertexNum; i++) {
      cout<<"base:"<<base[i].data<<endl;
  }
  cout<<"vertexNum:"<<this->vertexNum<<endl;
  cout<<"edgeNum:"<<this->edgeNum<<endl;
  cout<<"PrintBse _____________________________________\n";
}


#pragma 公有函数声明结束
int main (){
  Graph h;
  h.init(4, 7);
  h.create();
  h.printBase();
  cout<<"入度"<< h.indegree('b')<<endl;
  cout<<"出度"<< h.outdegree('b')<<endl;
  h.printNode('b', true);
  h.addEdge('b', 'e', 1);
  cout<<"出度"<< h.outdegree('b')<<endl;
  h.deleteEdge('b', 'e');
  cout<<"出度"<< h.outdegree('b')<<endl;
  h.printBase();
  cout<<"入度"<< h.indegree('a')<<endl;
  cout<<"出度"<< h.outdegree('a')<<endl;
  h.deleteEdge('a', 'b');
  cout<<"出度"<<h.outdegree('a');
  cout<<"入度"<<h.indegree('b');
  return 1;
}


测试用的图如下:


image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,561评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,218评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,162评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,470评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,550评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,806评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,951评论 3 407
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,712评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,166评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,510评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,643评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,306评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,930评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,745评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,983评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,351评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,509评论 2 348

推荐阅读更多精彩内容

  • 一些概念 数据结构就是研究数据的逻辑结构和物理结构以及它们之间相互关系,并对这种结构定义相应的运算,而且确保经过这...
    Winterfell_Z阅读 5,700评论 0 13
  • 1. 图的定义和基本术语 线性结构中,元素仅有线性关系,每个元素只有一个直接前驱和直接后继;树形结构中,数据元素(...
    yinxmm阅读 5,435评论 0 3
  • 大部分内容来自于《大话数据结构》,代码全部使用Swift实现。至于为什么抽风写这个?😊你懂的。 1.线性表 线性表...
    一剑孤城阅读 81,796评论 12 111
  • 1.每次删除后面重复的元素 2.使用数组的indexOf()方法 3.观察数组该元素是否是第一次出现 4.利用Ob...
    txwslyf阅读 129评论 0 0
  • 1.检查当前安装的PHP包 yum list installed | grep php 如果有安装的PHP包,先删...
    随想的风阅读 959评论 0 0