代码搜索:MATCHING
找到约 3,451 项符合「MATCHING」的源代码
代码结果 3,451
www.eeworm.com/read/272848/10940453
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/272848/10940663
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/272848/10941132
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/272848/10941361
cpp parenthesismatching.cpp
// match parentheses
#include
#include
#include "arrayStack.h"
using namespace std;
void printMatchedPairs(string expr)
{// Parenthesis matching.
arrayStack
www.eeworm.com/read/459616/7270545
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& x); // dele
www.eeworm.com/read/449369/7507731
exptmatch,v
head 1.2;
access;
symbols
zero-five-zero:1.2
zero-four-seventeen:1.2
zero-four-ten:1.2
zero-four-nine:1.1
zero-four-eight:1.1
zero-four-five:1.1
zero-four-three:1.1;
locks
neto:1.2;
comment @#
www.eeworm.com/read/444297/7614379
m codice_b.m
%
% In order to obtain a simple and effective source code for
% Fingerprint Recognition System please visit
% http://utenti.lycos.it/matlab/beginner.htm
%
% There you will be able to make a sma
www.eeworm.com/read/146126/12668217
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_