graph_operators.h

来自「这是一个用于数据挖掘的常用算法的模板库(数据挖掘的C++模板库for UNIX)」· C头文件 代码 · 共 43 行

H
43
字号
/* *  Copyright (C) 2005 M.J. Zaki <zaki@cs.rpi.edu> Rensselaer Polytechnic Institute *  Written by parimi@cs.rpi.edu *  Updated by chaojv@cs.rpi.edu, alhasan@cs.rpi.edu, salems@cs.rpi.edu * *  This program is free software; you can redistribute it and/or *  modify it under the terms of the GNU General Public License *  as published by the Free Software Foundation; either version 2 *  of the License, or (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public License along *  with this program; if not, write to the Free Software Foundation, Inc., *  59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */#ifndef _GRAPH_OPERATORS_H_#define _GRAPH_OPERATORS_H_template<class PP, class MP, class ST, template<class, typename, typename, template <typename> class > class CC,          template <typename> class ALLOC >class pattern;class undirected;template<class prop, class next_property>class proplist;template<class PP, class MP, class PAT_ST, template<class, typename, typename, template <typename> class > class CC,         template <typename> class ALLOC >ostream& operator<< (ostream& ostr, const GRAPH_PATTERN* p) {  ostr<<"Canonical code: \n"<<p->_canonical_code;  ostr<<p->_pat_sup;  return ostr;}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?