代码搜索:Matrix

找到约 10,000 项符合「Matrix」的源代码

代码结果 10,000
www.eeworm.com/read/315136/13550388

opt matrix.opt

www.eeworm.com/read/315136/13550389

dsw matrix.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # 警告: 不能编辑或删除该工作区文件! ############################################################################### Project: "Matrix"=".\Matrix.d
www.eeworm.com/read/315136/13550390

exe matrix.exe

www.eeworm.com/read/315136/13550391

plg matrix.plg

Build Log --------------------Configuration: Matrix - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\rommel
www.eeworm.com/read/315136/13550392

cpp matrix.cpp

#include "iostream" using namespace std; ////////////////////////////////////////////////////////////////////// // Matrix.cpp // // 操作矩阵的类 CMatrix 的实现文件 // ////////////////////////
www.eeworm.com/read/314386/13568702

h matrix.h

#ifndef MATRIX_H #define MATRIX_H class Matrix { public: Matrix( int = 0 ,int = 0 ); Matrix( const Matrix& ); ~Matrix(); int getr(); int getc(); int gete( int, int )
www.eeworm.com/read/314386/13568706

cpp matrix.cpp

#include #include #include using namespace std; #include "Matrix.h" Matrix::Matrix( int r, int c ) : row( r ), col( c ) { ptr = new int[ row * col ]; for
www.eeworm.com/read/314138/13573949

h matrix.h

// Matrix.h: interface for the CMatrix class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_MATRIX_H__BF29AB98_8F8D_4BBC_8171_4ADD41EE27F9__INCLUDED_)
www.eeworm.com/read/314138/13573965

cpp matrix.cpp

// Matrix.cpp: implementation of the CMatrix class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "Matrix.h" #include "iostream.h" #inc
www.eeworm.com/read/313669/13582930

h matrix.h

////////////////////////////////////////////////////////////////////// // Matrix.h // // 操作矩阵的类 CMatrix 的声明接口 // // 周长发编制, 2002/8 ////////////////////////////////////////////////////////////////