代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/462026/7212117
gif sequence.gif
www.eeworm.com/read/447954/7543075
c sequence.c
/*
** Author: Tapas Kanungo, kanungo@cfar.umd.edu
** Date: 22 February 1998
** File: sequence.c
** Purpose: Routines for generating, reading and writing sequence of
** observ
www.eeworm.com/read/447954/7543095
o sequence.o
www.eeworm.com/read/443646/7629499
c sequence.c
/********* Sequence input routines for CLUSTAL W *******************/
/* DES was here. FEB. 1994 */
/* Now reads PILEUP/MSF and CLUSTAL alignment files */
#include
#include
#inc
www.eeworm.com/read/435150/7796280
h sequence.h
// Exercise 13.2 Sequence.h
// Class encapsulating a sequence of integers
// We add a declaration for the equals() function member here
#ifndef SEQUENCE_H
#define SEQUENCE_H
class Sequence {
www.eeworm.com/read/435150/7796282
cpp sequence.cpp
// Exercise 13.2 Sequence.cpp
// Implementation of the Sequence class
// The definition for the equals() functionds goes in here
#include "Sequence.h"
#include
#include
us
www.eeworm.com/read/435150/7796286
h sequence.h
// Exercise 13.3 Sequence.h
// Class encapsulating a sequence of integers
#ifndef SEQUENCE_H
#define SEQUENCE_H
class Sequence {
public:
Sequence(); // Default c
www.eeworm.com/read/435150/7796288
cpp sequence.cpp
// Exercise 13.3 Sequence.cpp
// Implementation of the Sequence class
#include "Sequence.h"
#include
#include
using std::cout;
using std::endl;
// Default constructor
www.eeworm.com/read/435150/7796289
h sequence.h
// Exercise 13.1 Sequence.h
#ifndef SEQUENCE_H
#define SEQUENCE_H
// Class encapsulating a sequence of integers
class Sequence {
public:
Sequence(); // Default con
www.eeworm.com/read/435150/7796291
cpp sequence.cpp
// Exercise 13.1 Sequence.cpp
// Implementation of the Sequence class
// encapsulating an arbitrary length sequence of integers
#include "Sequence.h"
#include
#include
using