⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sequence.h

📁 本程序是计算机视觉稠密匹配的程序
💻 H
字号:
/*
 *
 *  All Contents Copyright 2000 by Jared Samet. All Rights Reserved.
 *
 */

#ifndef _SEQUENCE_H
#define _SEQUENCE_H

#define new DEBUG_NEW
 
class CSequence
{
public:
    CSequence(unsigned int* pLetters, unsigned int cLetters);	// makes a copy
    virtual ~CSequence();								        // bye-bye
	unsigned int Length(void);							        // how long?
	unsigned int& LetterAt(int i);						        // seq.LetterAt(4) ~ seq[4];
	void DumpSequence(void);							        // print it out
protected:
	unsigned int m_cLetters;							        // How long the sequence is
    unsigned int* m_pLetters;									// what the letters are (stored as ints, not null-terminated)
};

#endif

⌨️ 快捷键说明

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