代码搜索:MATCHING
找到约 3,451 项符合「MATCHING」的源代码
代码结果 3,451
www.eeworm.com/read/157453/11704269
h keychain.h
#ifndef KeyedChain_
#define KeyedChain_
// file keychain.h
// chains with keys
#include "echain.h"
template
class KeyedChain : public Chain {
public:
bool Delete(T&
www.eeworm.com/read/259580/11779785
h dictionary.h
// abstract class dictionary
// abstract data type specification for dictionary data structure
// all methods are pure virtual functions
// K is key type and E is value type
#ifndef dictionary_
www.eeworm.com/read/259580/11780235
h hashtable.h
// hash table using linear open addressing and division
// implements dictionary methods other than erase
#ifndef hashTable_
#define hashTable_
#include
#include "hash.h" // m
www.eeworm.com/read/259580/11780988
h graphchain.h
// Extension of chain to include a method to erase by matching element field
// This class is for use by the linked graph classes
#ifndef graphChain_
#define graphChain_
#include "chainWithI
www.eeworm.com/read/259580/11781318
cpp parenthesismatching.cpp
// match parentheses
#include
#include
#include "arrayStack.h"
using namespace std;
void printMatchedPairs(string expr)
{// Parenthesis matching.
arrayStack
www.eeworm.com/read/258387/11866870
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// Matching.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
www.eeworm.com/read/340720/12138192
cpp 串的模式匹配(查找子串在主串中的位置).cpp
// 串的模式匹配(查找子串在主串中的位置)
#include
#include
using namespace std;
// 一般方法:从主串和模式串的第一个字符开始比较,若相等,则继续比较后续字符;
// 否则从主串的下一个字符起再重新和模式字符比较。
int normalMatch(const string& s1,
www.eeworm.com/read/338344/12312634
m codemapping.m
%*************************************************************%
%函数名:CodeMapping
%功能: 根据码映射表,对输入码字重新排列顺序
%参数: 行向量(1*9216)
%返回值:映射后的码字(1*9216)
%**************************************************