摘要:
product类:package com.lab;public class Product {private int id; // 商品编号 private String name; // 商品名称 private String description; // 商品描述 private float ... 阅读全文
摘要:
Map是c++的一个标准容器,她提供了很好一对一的关系,在一些程序中建立一个map可以起到事半功倍的效果,总结了一些map基本简单实用的操作!1.map最基本的构造函数;mapmapstring;mapmapint;mapmapstring;mapmapchar;mapmapchar;mapmapi... 阅读全文
摘要:
set提供一个不重复元素的集合,一般不能直接修改元素。因为这样可能会造成重复元素因此必须删除旧元素,再插入新元素。看下面程序:分析每句的功能。#include#includeusing namespace std;int main(){set s;//1s.insert(9);s.insert(3)... 阅读全文
摘要:
这题的最坑的地方就是每步可能会有两种情况,这两情况起初我都单独考虑了,但就是没放在一起考虑。。。wa个不停,果然贪心是一个很考验思维的东西。这里可以这样考虑,在运人的过程中,河的起始岸最后终将剩下一个或者两个 人,并且是用时最大的。所以这个时候就会有两种情况,dp[i]=dp[i-1]+time[i... 阅读全文
摘要:
简单的贪心和高精度运算,主要还是要读懂题。#include"iostream"#include"stdio.h"#include"string"#include"string.h"#include"cmath"#define mx 5005using namespace std;int cnt[15... 阅读全文
摘要:
一、打开和关闭文件#include int main( void ) { FILE* pReadFile = fopen( "E:\\mytest.txt", "r" ); // 打开文件 if ( pReadFile == NULL ... 阅读全文
摘要:
#include static GLsizei iMode = 1;static GLfloat xRot = 0.0f; static GLfloat yRot = 0.0f; int winWidth = 400, winHeight = 200;int iPointNum = 0; int ... 阅读全文
摘要:
转自:http://blog.csdn.net/moxiaomomo/article/details/8056356enums枚举是值类型,数据直接存储在栈中,而不是使用引用和真实数据的隔离方式来存储。(1)默认情况下,枚举中的第一个变量被赋值为0,其他的变量的值按定义的顺序来递增(0,12,3..... 阅读全文