当前位置: 首页 > news >正文

城阳网站建设培训网站建设及推广服务的合同范本

城阳网站建设培训,网站建设及推广服务的合同范本,网站搜索引擎优化主要方法,婚恋公司销售好做吗目录 一. 如何使用一颗红黑树同时实现map和set 二. 红黑树的节点插入操作 三. 红黑树迭代器的实现 3.1 begin()和end() 3.2 operator和operator-- 3.3 红黑树迭代器实现完整版代码 四. map和set的封装 附录#xff1a;用红黑树封装map和set完整版代码 1. RBTree.h文件…目录 一. 如何使用一颗红黑树同时实现map和set 二. 红黑树的节点插入操作 三. 红黑树迭代器的实现 3.1 begin()和end() 3.2 operator和operator-- 3.3 红黑树迭代器实现完整版代码 四. map和set的封装 附录用红黑树封装map和set完整版代码 1. RBTree.h文件 2. map.h文件 3. set.h文件 一. 如何使用一颗红黑树同时实现map和set 我们知道map和set的底层都是通过红黑树来实现的它们的不同在于map存储的是一键值对键值对的第一个数据用于搜索树的比较第二个数据用于与之配对而set则只有一个数据。需要采用模板泛型编程的方法来定义红黑树节点并在map和set中给定红黑树类模板不同的模板参数类型 图1.1 红黑树节点、红黑树类模板与map和set类模板之间的关系 观察图1.1我们可以总结出RBTreeNode、RBTree、map和set类模板之间的如下规则 红黑树节点只有一个模板参数set有一个模板参数其本身就是节点的数据类型map有两个模板参数分别为创建键值对的first和second数据类型。在map中RBTreeNode中的模板参数类型为pair键值对由于map中要取出键值对的first比较创建搜索树而直接用或对pair比较不符合要求因此定义仿函数KeyOfV来获取用于比较的数据。 二. 红黑树的节点插入操作 用于对map和set封装的红黑树的查找操作与普通红黑树一致唯一的不同在于需要创建KeyOfV类的对象并使用仿函数进行比较。如果希望与库中的insert更加贴合则应返还键值对pairiterator, bool类型数据。 具体的红黑树的插入实现流程可参考博文C数据结构手撕红黑树_【Shine】光芒的博客-CSDN博客 代码2.1红黑树节点插入 std::pairiterator, bool insert(const T date){//插入第一个节点if (_root nullptr){_root new Node(date);_root-_col BLACK; //根节点为黑色return std::make_pair(_root, true);}KeyOfT kov; //用于筛选比较数据的类对象//寻找节点插入的位置Node* parent nullptr; Node* cur _root;while (cur){//如果cur节点的key值大于插入键值对的key向左子树查找if (kov(cur-_date) kov(date)){parent cur;cur cur-_left;}else if(kov(cur-_date) kov(date)) //如果cur节点的key值小于插入键值对的key向左子树查找{parent cur;cur cur-_right;}else //相等表明节点已存在插入失败{return std::make_pair(cur, false);}}//判断新节点是parent的左节点还是右节点链接//默认新插入的节点为红色cur new Node(date);Node* newNode cur;cur-_col RED;cur-_parent parent;if (kov(parent-_date) kov(date)){parent-_left cur;}else{parent-_right cur;}//如果parent节点不为空且为红色那么红黑树的结构在插入节点后被破坏需要调整while (parent parent-_col RED){Node* grandParent parent-_parent; //祖父节点assert(grandParent);assert(grandParent-_col BLACK); //断言检查如果祖父节点为空或为黑色那么红黑树结构在节点插入之前就存在问题if (parent grandParent-_left) //插入在祖父节点的左子树{Node* uncle grandParent-_right;//情况一cur为红parent为红grandFather为黑uncle为红if (uncle uncle-_col RED){//将parent节点和uncle节点变为黑grandFather节点变为红然后继续向上调整parent-_col BLACK;uncle-_col BLACK;grandParent-_col RED;cur grandParent;parent cur-_parent;} else //情况二、三cur为红parent为红grandFather为黑uncle不存在或为黑{if (parent-_left cur){//情况二 -- 进行右单旋 变色(parent变黑,grandFather变红)// g// p u//cRotateR(grandParent);parent-_col BLACK;grandParent-_col RED;}else{//情况三 -- 进行左右双旋 变色cur节点变为黑grandFater节点变为红// g// p u// u RotateLR(grandParent);cur-_col BLACK;grandParent-_col RED;}break;}}else //parent grandParent-_right{Node* uncle grandParent-_left; //叔叔节点//情况一cur为红parent为红grandFather为黑uncle为红if (uncle uncle-_col RED){//将parent节点和uncle节点变为黑grandFather节点变为红然后继续向上调整parent-_col BLACK;uncle-_col BLACK;grandParent-_col RED;cur grandParent;parent cur-_parent;}else{//情况二、三cur为红parent为红grandFather为黑uncle不存在或为黑if (parent-_right cur){//情况二 -- 进行右单旋 变色(parent变黑,grandFather变红)// g// u p// cRotateL(grandParent);parent-_col BLACK;grandParent-_col RED;}else{//情况三 -- 进行右左双旋 变色cur节点变为黑grandFater节点变为红// g// u p// cRotateRL(grandParent);cur-_col BLACK;grandParent-_col RED;}break;}}}_root-_col BLACK; //根节点为黑色return std::make_pair(newNode, true);} 三. 红黑树迭代器的实现 我们要额外封装一个类struct  __RBTree_iterator_来实现红黑树迭代器这个类有三个模板参数T、Ref、Ptr这样做的目的是定义一份迭代器类模板就可以实现普通迭代器和const迭代器。 typedef __RBTree_iterator_T, T, T* iterator;   //红黑树迭代器 3.1 begin()和end() STL标准规定迭代器区间begin()和end()为左闭右开区间而对红黑树遍历获取的数据为升序序列因此begin()应该为左下角位置处的节点end()应该为哨兵卫的头结点_head。这里从便于理解和实现的角度出发将_head设为nullptr即end()返回空指针。 图3.1 红黑树的begin()和end() 代码3.1begin和end //获取begin()位置 -- 最左侧节点iterator begin(){Node* left _root;while (left left-_left){left left-_left;}return iterator(left);}iterator end(){return iterator(nullptr);} 3.2 operator和operator-- operator就是查找中序遍历的下一个节点可分为两种情况讨论 如果节点的右子树不为空则为右子树最左侧的节点。如果节点的右子树为空则向上查找孩子不是父亲的右子节点的那个节点。 图3.2 operator的两种情况 operator--与operator正好相反为找中序遍历的前一个节点亦可分两种情况讨论 如果节点的左子树不为空则为左子树最右侧的节点。如果节点的左子树为空则向上查找孩子不是父亲的左子节点的那个节点。 图3.3 operator--的两种情况 代码3.2operator和operator-- typedef RBTreeNodeT Node; //红黑树节点typedef __RBTree_iterator_T, Ref, Ptr Self; //运算符重载函数Self operator(){if (_node-_right ! nullptr){//找右子树的最左侧节点Node* left _node-_right;while (left-_left){left left-_left;}_node left;}else{//找孩子节点为左孩子节点的位置或者父亲节点为空Node* parent _node-_parent;Node* cur _node;while (parent parent-_right cur){cur cur-_parent;parent parent-_parent;}_node parent;}return *this;}//--运算符重载函数Self operator--(){if (_node-_left ! nullptr){Node* right _node-_left;while (right-_right){right right-_right;}_node right;}else{Node* parent _node-_parent;Node* cur _node;while (parent parent-_left cur){cur cur-_parent;parent parent-_parent;}_node parent;}return *this;} 3.3 红黑树迭代器实现完整版代码 //红黑树迭代器模板 templateclass T, class Ref, class Ptr struct __RBTree_iterator_ {typedef RBTreeNodeT Node; //红黑树节点typedef __RBTree_iterator_T, Ref, Ptr Self;Node* _node;//构造函数__RBTree_iterator_(Node* node): _node(node){ }//解引用函数Ref operator*(){return _node-_date;}//成员访问操作符-重载Ptr operator-(){return _node-_date;}bool operator(const Self it) const{return _node it._node;}bool operator!(const Self it) const{return _node ! it._node;}//运算符重载函数Self operator(){if (_node-_right ! nullptr){//找右子树的最左侧节点Node* left _node-_right;while (left-_left){left left-_left;}_node left;}else{//找孩子节点为左孩子节点的位置或者父亲节点为空Node* parent _node-_parent;Node* cur _node;while (parent parent-_right cur){cur cur-_parent;parent parent-_parent;}_node parent;}return *this;}//--运算符重载函数Self operator--(){if (_node-_left ! nullptr){Node* right _node-_left;while (right-_right){right right-_right;}_node right;}else{Node* parent _node-_parent;Node* cur _node;while (parent parent-_left cur){cur cur-_parent;parent parent-_parent;}_node parent;}return *this;} }; 四. map和set的封装 map和set底层都是通过红黑树来实现的只需在map和set中定义一颗红黑树的自定义类型变量然后调用红黑树的接口函数即可。 这里需要特别注意的是map中的operator[]函数其实现为先调用insert函数insert函数返回一个键值对first为插入的节点或Key与插入节点相等位置的迭代器second为bool类型变量用来表示是否有新节点成功插入。函数只需返回insert返回的键值对的second的引用即可。 注意用于提取Key的仿函数要在map和set中分别定义。 代码4.1map的封装 namespace zhang {template class K, class Vclass map{struct KeyOfV{const K operator()(const std::pairK,V val){return val.first;}};public:typedef typename RBTreeK, std::pairK, V, KeyOfV::iterator iterator;std::pairiterator, bool insert(const std::pairK, V kv){return _t.insert(kv);}iterator begin(){return _t.begin();}iterator end(){return _t.end();}V operator[](const K key){std::pairiterator, bool ret insert(std::make_pair(key, V()));return ret.first-second;}private:RBTreeK, std::pairK,V, KeyOfV _t; //红黑树}; } 代码4.2set的模拟实现 namespace zhang {template class Kclass set{struct KeyOfV{const K operator()(const K val){return val;}};public:typedef typename RBTreeK, K, KeyOfV::iterator iterator;std::pairiterator, bool insert(const K key){return _t.insert(key);}iterator begin(){return _t.begin();}iterator end(){return _t.end();}K operator[](const K key){std::pairiterator, bool ret insert(key);return *ret.first;}private:RBTreeK, K, KeyOfV _t; //红黑树}; }附录用红黑树封装map和set完整版代码 1. RBTree.h文件 #includeiostream #includeassert.h//枚举常量 -- 红色、黑色 enum Color {RED,BLACK };//定义红黑树节点 templateclass T struct RBTreeNode {RBTreeNodeT* _left;RBTreeNodeT* _right;RBTreeNodeT* _parent;T _date; //数据值set为单个值map为键值对pairColor _col; //节点颜色RBTreeNode(const T date) //节点构造函数: _left(nullptr), _right(nullptr), _parent(nullptr), _date(date), _col(RED){ } };//红黑树迭代器模板 templateclass T, class Ref, class Ptr struct __RBTree_iterator_ {typedef RBTreeNodeT Node; //红黑树节点typedef __RBTree_iterator_T, Ref, Ptr Self;Node* _node;//构造函数__RBTree_iterator_(Node* node): _node(node){ }//解引用函数Ref operator*(){return _node-_date;}//成员访问操作符-重载Ptr operator-(){return _node-_date;}bool operator(const Self it) const{return _node it._node;}bool operator!(const Self it) const{return _node ! it._node;}//运算符重载函数Self operator(){if (_node-_right ! nullptr){//找右子树的最左侧节点Node* left _node-_right;while (left-_left){left left-_left;}_node left;}else{//找孩子节点为左孩子节点的位置或者父亲节点为空Node* parent _node-_parent;Node* cur _node;while (parent parent-_right cur){cur cur-_parent;parent parent-_parent;}_node parent;}return *this;}//--运算符重载函数Self operator--(){if (_node-_left ! nullptr){Node* right _node-_left;while (right-_right){right right-_right;}_node right;}else{Node* parent _node-_parent;Node* cur _node;while (parent parent-_left cur){cur cur-_parent;parent parent-_parent;}_node parent;}return *this;} };//红黑树类模板 templateclass K, class T, class KeyOfT class RBTree {typedef RBTreeNodeT Node; //类型重定义红黑树节点public:typedef __RBTree_iterator_T, T, T* iterator; //迭代器std::pairiterator, bool insert(const T date){//插入第一个节点if (_root nullptr){_root new Node(date);_root-_col BLACK; //根节点为黑色return std::make_pair(_root, true);}KeyOfT kov; //用于筛选比较数据的类对象//寻找节点插入的位置Node* parent nullptr; Node* cur _root;while (cur){//如果cur节点的key值大于插入键值对的key向左子树查找if (kov(cur-_date) kov(date)){parent cur;cur cur-_left;}else if(kov(cur-_date) kov(date)) //如果cur节点的key值小于插入键值对的key向左子树查找{parent cur;cur cur-_right;}else //相等表明节点已存在插入失败{return std::make_pair(cur, false);}}//判断新节点是parent的左节点还是右节点链接//默认新插入的节点为红色cur new Node(date);Node* newNode cur;cur-_col RED;cur-_parent parent;if (kov(parent-_date) kov(date)){parent-_left cur;}else{parent-_right cur;}//如果parent节点不为空且为红色那么红黑树的结构在插入节点后被破坏需要调整while (parent parent-_col RED){Node* grandParent parent-_parent; //祖父节点assert(grandParent);assert(grandParent-_col BLACK); //断言检查如果祖父节点为空或为黑色那么红黑树结构在节点插入之前就存在问题if (parent grandParent-_left) //插入在祖父节点的左子树{Node* uncle grandParent-_right;//情况一cur为红parent为红grandFather为黑uncle为红if (uncle uncle-_col RED){//将parent节点和uncle节点变为黑grandFather节点变为红然后继续向上调整parent-_col BLACK;uncle-_col BLACK;grandParent-_col RED;cur grandParent;parent cur-_parent;} else //情况二、三cur为红parent为红grandFather为黑uncle不存在或为黑{if (parent-_left cur){//情况二 -- 进行右单旋 变色(parent变黑,grandFather变红)// g// p u//cRotateR(grandParent);parent-_col BLACK;grandParent-_col RED;}else{//情况三 -- 进行左右双旋 变色cur节点变为黑grandFater节点变为红// g// p u// u RotateLR(grandParent);cur-_col BLACK;grandParent-_col RED;}break;}}else //parent grandParent-_right{Node* uncle grandParent-_left; //叔叔节点//情况一cur为红parent为红grandFather为黑uncle为红if (uncle uncle-_col RED){//将parent节点和uncle节点变为黑grandFather节点变为红然后继续向上调整parent-_col BLACK;uncle-_col BLACK;grandParent-_col RED;cur grandParent;parent cur-_parent;}else{//情况二、三cur为红parent为红grandFather为黑uncle不存在或为黑if (parent-_right cur){//情况二 -- 进行右单旋 变色(parent变黑,grandFather变红)// g// u p// cRotateL(grandParent);parent-_col BLACK;grandParent-_col RED;}else{//情况三 -- 进行右左双旋 变色cur节点变为黑grandFater节点变为红// g// u p// cRotateRL(grandParent);cur-_col BLACK;grandParent-_col RED;}break;}}}_root-_col BLACK; //根节点为黑色return std::make_pair(newNode, true);}//中序遍历函数void InOrder(){_InOrder(_root);std::cout std::endl;}//红黑树检验函数bool IsRBTree(){//空树是合法的红黑树if (_root nullptr){return true;}//检查根节点颜色if (_root-_col RED){std::cout 根节点颜色不是黑色 std::endl;}int baseBlackNum 0; //基准黑色节点个数//以最左侧路径为基准计算黑色节点个数每条路径黑色节点数目都应该相同Node* cur _root;while (cur){if (cur-_col BLACK){baseBlackNum;}cur cur-_left;}bool blackNumTrue PrevCheck(_root, 0, baseBlackNum); //检查每条路径黑色节点数目是否相同bool colorTrue CheckColor(_root); //检查是否存在连续红色节点return blackNumTrue colorTrue;}//获取begin()位置 -- 最左侧节点iterator begin(){Node* left _root;while (left left-_left){left left-_left;}return iterator(left);}iterator end(){return iterator(nullptr);}private:bool CheckColor(Node* root){if (root nullptr){return true;}//如果本节点为红色且父亲节点也为红色证明存在连续红色节点结构错误if (root-_col RED root-_parent root-_parent-_col RED){std::cout 存在连续的红色节点 std::endl;return false;}return CheckColor(root-_left) CheckColor(root-_right);}bool PrevCheck(Node* root, int blackNum, int baseBlackNum){if (root nullptr){if (blackNum ! baseBlackNum){std::cout 每条路径上黑色节点的数目不同 std::endl;return false;}else{return true;}}if (root-_col BLACK){blackNum;}return PrevCheck(root-_left, blackNum, baseBlackNum) PrevCheck(root-_right, blackNum, baseBlackNum);}void _InOrder(Node* root){if (root nullptr){return;}_InOrder(root-_left);std::cout root-_kv.first ;_InOrder(root-_right);}void RotateR(Node* parent) //右单旋函数{Node* pNode parent-_parent; Node* pL parent-_left; //左子节点Node* pLR pL-_right; //左子节点的右子节点//将pLR节点托管给parent节点的左子节点parent-_left pLR;if (pLR ! nullptr){pLR-_parent parent;}//将父亲节点托管给pL节点的右子节点pL-_right parent; parent-_parent pL;//此时这颗进行旋转的子树的根节点变为了pLpL要与pNode节点连接if (parent _root){_root pL;pL-_parent nullptr;}else{pL-_parent pNode;if (pNode-_left parent){pNode-_left pL;}else{pNode-_right pL;}}}void RotateL(Node* parent) //左单旋函数{Node* pNode parent-_parent;Node* pR parent-_right; //右子节点Node* pRL pR-_left; //右子节点的左子节点//将pLR节点托管给parent节点的右子节点parent-_right pRL;if (pRL ! nullptr){pRL-_parent parent;}//将parent节点托管给pR的左子节点pR-_left parent;parent-_parent pR;if (_root parent){_root pR;_root-_parent nullptr;}else{pR-_parent pNode;if (pNode-_left parent){pNode-_left pR;}else{pNode-_right pR;}}}void RotateLR(Node* parent) //左右双旋函数{RotateL(parent-_left);RotateR(parent);}void RotateRL(Node* parent) //右左双旋函数{RotateR(parent-_right);RotateL(parent);}private:Node* _root nullptr; }; 2. map.h文件 #include RBTree.hnamespace zhang {template class K, class Vclass map{struct KeyOfV{const K operator()(const std::pairK,V val){return val.first;}};public:typedef typename RBTreeK, std::pairK, V, KeyOfV::iterator iterator;std::pairiterator, bool insert(const std::pairK, V kv){return _t.insert(kv);}iterator begin(){return _t.begin();}iterator end(){return _t.end();}V operator[](const K key){std::pairiterator, bool ret insert(std::make_pair(key, V()));return ret.first-second;}private:RBTreeK, std::pairK,V, KeyOfV _t; //红黑树}; } 3. set.h文件 namespace zhang {template class Kclass set{struct KeyOfV{const K operator()(const K val){return val;}};public:typedef typename RBTreeK, K, KeyOfV::iterator iterator;std::pairiterator, bool insert(const K key){return _t.insert(key);}iterator begin(){return _t.begin();}iterator end(){return _t.end();}K operator[](const K key){std::pairiterator, bool ret insert(key);return *ret.first;}private:RBTreeK, K, KeyOfV _t; //红黑树}; }
文章转载自:
http://www.morning.ygztf.cn.gov.cn.ygztf.cn
http://www.morning.fbrshjf.com.gov.cn.fbrshjf.com
http://www.morning.xuejitest.com.gov.cn.xuejitest.com
http://www.morning.gwmjy.cn.gov.cn.gwmjy.cn
http://www.morning.xsctd.cn.gov.cn.xsctd.cn
http://www.morning.pzrrq.cn.gov.cn.pzrrq.cn
http://www.morning.nzsx.cn.gov.cn.nzsx.cn
http://www.morning.nrbqf.cn.gov.cn.nrbqf.cn
http://www.morning.fyglr.cn.gov.cn.fyglr.cn
http://www.morning.bpmfl.cn.gov.cn.bpmfl.cn
http://www.morning.fjntg.cn.gov.cn.fjntg.cn
http://www.morning.thntp.cn.gov.cn.thntp.cn
http://www.morning.rkypb.cn.gov.cn.rkypb.cn
http://www.morning.npmx.cn.gov.cn.npmx.cn
http://www.morning.hxwrs.cn.gov.cn.hxwrs.cn
http://www.morning.glkhx.cn.gov.cn.glkhx.cn
http://www.morning.rkdzm.cn.gov.cn.rkdzm.cn
http://www.morning.zxqqx.cn.gov.cn.zxqqx.cn
http://www.morning.zsyqg.cn.gov.cn.zsyqg.cn
http://www.morning.kdrjd.cn.gov.cn.kdrjd.cn
http://www.morning.leyuhh.com.gov.cn.leyuhh.com
http://www.morning.lhygbh.com.gov.cn.lhygbh.com
http://www.morning.cpnlq.cn.gov.cn.cpnlq.cn
http://www.morning.sjzsjsm.com.gov.cn.sjzsjsm.com
http://www.morning.fbzyc.cn.gov.cn.fbzyc.cn
http://www.morning.dqzcf.cn.gov.cn.dqzcf.cn
http://www.morning.gmysq.cn.gov.cn.gmysq.cn
http://www.morning.lpbrp.cn.gov.cn.lpbrp.cn
http://www.morning.rfpb.cn.gov.cn.rfpb.cn
http://www.morning.pzlcd.cn.gov.cn.pzlcd.cn
http://www.morning.wcft.cn.gov.cn.wcft.cn
http://www.morning.nhzxr.cn.gov.cn.nhzxr.cn
http://www.morning.rmppf.cn.gov.cn.rmppf.cn
http://www.morning.zcmpk.cn.gov.cn.zcmpk.cn
http://www.morning.ygth.cn.gov.cn.ygth.cn
http://www.morning.pwwjs.cn.gov.cn.pwwjs.cn
http://www.morning.dtrz.cn.gov.cn.dtrz.cn
http://www.morning.tgtwy.cn.gov.cn.tgtwy.cn
http://www.morning.qwlml.cn.gov.cn.qwlml.cn
http://www.morning.ktlfb.cn.gov.cn.ktlfb.cn
http://www.morning.pqcbx.cn.gov.cn.pqcbx.cn
http://www.morning.pghfy.cn.gov.cn.pghfy.cn
http://www.morning.wqjpl.cn.gov.cn.wqjpl.cn
http://www.morning.wcjgg.cn.gov.cn.wcjgg.cn
http://www.morning.dyzbt.cn.gov.cn.dyzbt.cn
http://www.morning.lywcd.cn.gov.cn.lywcd.cn
http://www.morning.wjjsg.cn.gov.cn.wjjsg.cn
http://www.morning.nhrkc.cn.gov.cn.nhrkc.cn
http://www.morning.yrddl.cn.gov.cn.yrddl.cn
http://www.morning.gynlc.cn.gov.cn.gynlc.cn
http://www.morning.lgwpm.cn.gov.cn.lgwpm.cn
http://www.morning.fnmgr.cn.gov.cn.fnmgr.cn
http://www.morning.ytfr.cn.gov.cn.ytfr.cn
http://www.morning.kpcxj.cn.gov.cn.kpcxj.cn
http://www.morning.nqnqz.cn.gov.cn.nqnqz.cn
http://www.morning.sxtdh.com.gov.cn.sxtdh.com
http://www.morning.qfbzj.cn.gov.cn.qfbzj.cn
http://www.morning.benqc.com.gov.cn.benqc.com
http://www.morning.sxmbk.cn.gov.cn.sxmbk.cn
http://www.morning.rwzmz.cn.gov.cn.rwzmz.cn
http://www.morning.tkgxg.cn.gov.cn.tkgxg.cn
http://www.morning.wdskl.cn.gov.cn.wdskl.cn
http://www.morning.gcszn.cn.gov.cn.gcszn.cn
http://www.morning.clxpp.cn.gov.cn.clxpp.cn
http://www.morning.lsmnn.cn.gov.cn.lsmnn.cn
http://www.morning.pgrsf.cn.gov.cn.pgrsf.cn
http://www.morning.pgxjl.cn.gov.cn.pgxjl.cn
http://www.morning.nlcw.cn.gov.cn.nlcw.cn
http://www.morning.hwxxh.cn.gov.cn.hwxxh.cn
http://www.morning.lkfhk.cn.gov.cn.lkfhk.cn
http://www.morning.ykkrg.cn.gov.cn.ykkrg.cn
http://www.morning.bxbnf.cn.gov.cn.bxbnf.cn
http://www.morning.gzzncl.cn.gov.cn.gzzncl.cn
http://www.morning.jnoegg.com.gov.cn.jnoegg.com
http://www.morning.fbdkb.cn.gov.cn.fbdkb.cn
http://www.morning.wmmqf.cn.gov.cn.wmmqf.cn
http://www.morning.ljzqb.cn.gov.cn.ljzqb.cn
http://www.morning.qjzgj.cn.gov.cn.qjzgj.cn
http://www.morning.fqnql.cn.gov.cn.fqnql.cn
http://www.morning.gpnfg.cn.gov.cn.gpnfg.cn
http://www.tj-hxxt.cn/news/262612.html

相关文章:

  • 做网站开发需要考什么证书网站建设重要意义
  • 管城郑州网站建设要怎么制作网站
  • 容桂网站开发济南seo关键词优化顾问
  • 电子商务网站建设的流程中国网新山东
  • 金融行业网站开发支持付费下载系统的网站模板或建站软件
  • 哈尔滨网站建设教学网站建设空心正方形
  • 南磨房做网站公司全屏网站 图片优化
  • 私募基金网站开发流程博客seo教程
  • 上海建设部网站首页模板网站首页设计
  • 沈阳做网站客户多吗阿里云虚拟机搭建wordpress
  • 视频模板网站推荐做视频网站要准备哪些资料
  • 公司网站文件夹设计网站由哪几部分组成
  • 网站维护和建设实报告自我介绍面试模板
  • 餐饮公司网站建设的特点网站改版有什么影响
  • 做网站的开发环境外贸网站推广有哪些
  • 成都锦江建设局网站深圳抖音推广公司
  • 网站设计深圳抽奖网站怎么做的
  • 阿里云主机搭建网站免费做名片的网站
  • 网站页面设计模板代码网站开发小图标怎么设置
  • 链接点开网页表白的网站怎么做的wordpress 大图主题
  • 龙岗 营销型网站建设wordpress后台自定义面版上传
  • 河南郑州网站推广优化外包如何做魔道祖师网站
  • 企业网站收费标准 资源新版在线天堂
  • 兰州市门户网站杭州百度快照优化排名推广
  • 简易手机站南京室内设计公司排名
  • 免费建立网站论坛网络营销学校
  • 服务佳的小企业网站建设用jsp做的网站首页
  • 安徽制作网站怎样建网站 需要
  • 请为hs公司的钻石礼品网站做网络营销沟通策划_预算是20万.网站建设怎么申请域名
  • 织梦网站建设过程天津定制网站建设商店设计