当前位置: 首页>>代码示例>>C++>>正文


C++ Matriz::push_back方法代码示例

本文整理汇总了C++中Matriz::push_back方法的典型用法代码示例。如果您正苦于以下问题:C++ Matriz::push_back方法的具体用法?C++ Matriz::push_back怎么用?C++ Matriz::push_back使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Matriz的用法示例。


在下文中一共展示了Matriz::push_back方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: main

int main(){
//    int matriz[5][5];
//     int num;
//     for(int i=0; i<5; ++i){
//          for(int j=0; j<5; ++j){
//               cin >> num;
//               matriz[i][j] = num;
//          }
//     }
//     printMatriz(matriz);
//     return 0;
     int filas, columnas;
     Matriz matriz;
     cout << "cantidad de filas:\n";
     cin >> filas;
     cout << "cantidad de columnas:\n";
     cin >> columnas;
     Array arr(columnas);     
     for(int i=0; i<filas; ++i){
          for(int j=0; j<columnas; ++j){
               cin >> arr[j];
          }
          matriz.push_back(arr);
     }
     printVector(matriz);
     return 0;
}
开发者ID:sescobb27,项目名称:cpp-applications,代码行数:27,代码来源:Matrices.cpp

示例2: fila

vector<vector<double> > Tsp::readTSPProblemFile(string filename){
//	toolbox *tb = toolbox::instance();

	typedef vector<double> Fila;
	typedef vector<Fila> Matriz;
	typedef vector<double> Fila_d;
	typedef vector<Fila_d> Matriz_d;
	Fila fila(2);
	char * charfile = new char[filename.length()+1];
	strcpy(charfile,filename.c_str());
	ifstream open (charfile,istream::in);
	if (open)
		cout << "El fichero TSP se ha abierto correctamente";
	else{
		cout << "No se ha podido abrir el fichero de problema TSP";
		exit(0);
	}
	cout << endl;
	Matriz matriz;
	string line = "";
	int i =1;
	int k = 1;
	int j = 0;
	int num = 0;
	int aux = 0;
	bool flag = 0;
	string node_coord_section = "NODE_COORD_SECTION";

	while(!open.eof()){
		open >> line;
		if (line[0] != ' ') {
			if (flag) {
				aux = atoi(line.c_str());
				if (k != 1 && line.compare("EOF") != 0){// && line.compare(" ") != 0) {
					num = aux;
					if(j==0 && k == 2){
						fila[0] = (double) num;
						j++;
						k++;
					}else if(k == 3){
						fila[1] = (double) num;
						matriz.push_back(fila);
	//					cout << "VECTOR AGREGADO a matriz "<< matriz[i-1][0] << " " << matriz[i-1][1]  << endl;
						j = 0;
						i++;
						k=1;
					}
				}else{
					k++;
				}
			}
			if (line.compare("NODE_COORD_SECTION") == 0) {
//				cout << "se encontro NODE COORD SECTION" << endl;
				flag = 1;
			}
/*			if (line.compare("EOF") == 0)
				cout << "Fin del archivo"<< endl;*/
		}else{
			open.ignore(99999,'\n');
		}
	}

	open.close();
/*
	cout << "Creando matriz de distancias" << endl;
//===========Creacion de la matriz de distancias===============
	Matriz_d distancias;
	Fila_d filas ;
	double x1, y1, x2, y2 = 0;
	double dist = 0;
	for (int i = 0; i < (int) matriz.size(); i++) {
		for (int j = 0; j < (int) matriz.size(); j++) {
			x1 = (double) matriz[i][0];
			x2 = (double) matriz[j][0];
			y1 = (double) matriz[i][1];
			y2 = (double) matriz[j][1];
			dist = sqrt(pow((y2-y1),2)+pow((x2-x1),2));
			filas.push_back(dist);
//			cout << "Dato agregado: " << dist << " i= " << i+1 << "| j= " << j+1 << endl;
		}
		cout << "Se ha agregado la fila n°" << i+1 << endl;
		distancias.push_back(filas);
		filas.clear();
	}
*/
	/*cout << "Matriz distancias: " << endl;
	for(int i=0; i < (int)distancias.size(); i++){
		for(int j=0; j < (int)distancias[i].size();j++){
			cout << distancias[i][j] << " ";
		}
		cout << endl;
	}*/

//	return distancias;
	return matriz;
}
开发者ID:mguarda,项目名称:CCOPERM,代码行数:96,代码来源:Tsp.cpp


注:本文中的Matriz::push_back方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。