代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/123026/6063666
cpp vector.cpp
#pragma warning(disable:4786)
#include
#include
#include
#include
using namespace std ;
// ID 类用于小组记分,它保存了每一个选手的名字和积分
class ID
{
public:
string
www.eeworm.com/read/121297/6068932
c vector.c
#include
#include
int
main (void)
{
int i;
gsl_vector * v = gsl_vector_alloc (3);
for (i = 0; i < 3; i++)
{
gsl_vector_set (v, i, 1.23 + i);
}
www.eeworm.com/read/121089/6070531
txt vector.txt
SUMMARY VectorAlloc fAppendVector
#include
struct vectorType {
int max; /* max the vector can hold */
int count;
www.eeworm.com/read/121089/6070621
c vector.c
/* vector.c - simple vector management
*
* Modifications:
*
* 12-May-1988 mz Add VECTOR typedef
*
*/
#include
#include "..\h\tools.h"
#define DELTA 10
VECTOR *VectorAl
www.eeworm.com/read/117210/6105970
h vector.h
// VECTOR.h: interface for the VECTOR class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(VECTOR_H__INCLUDED_)
#define VECTOR_H__INCLUDED_
#if _MSC_VER >= 1
www.eeworm.com/read/117210/6105984
cpp vector.cpp
// VECTOR.cpp: implementation of the VECTOR class.
//
//////////////////////////////////////////////////////////////////////
#include
#include "VECTOR.h"
// This class VECTOR comes from an
www.eeworm.com/read/117210/6106009
h vector.h
//
// File: VECTOR.h
//
#ifndef _VECTOR_H_
#define _VECTOR_H_
// This class VECTOR comes from an article about rigid body
// animation published on www.gamasutra.com so it may
// follow its own li
www.eeworm.com/read/117210/6106015
cc vector.cc
//
// File: VECTOR.h
//
// This class VECTOR comes from an article about rigid body
// animation published on www.gamasutra.com so it may
// follow its own license. Please check gamasutra at
// ht