自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 资源 (4)
  • 收藏
  • 关注

原创 POJ-1318(list.sort()输出不为字典序,map才是按字典序排列)

#include#include#include#includeusing namespace std;list outputList;void ergodic(string prefix, string str){ if(str==""){ //cout<<prefix<<endl; outputList.push_back(prefix); }else{ for

2015-07-26 00:58:13 1044

原创 POJ-1250

#include#include#include#includeusing namespace std;int main(int argc, char *argv[]){ int bedNum; string customer; while(cin>>bedNum,bedNum){ int departCustomer=0; list mList; cin>>cust

2015-07-25 17:30:14 656

原创 POJ-1248

#include#include#include#include#includeusing namespace std;int main(int argc, char *argv[]){ int target; string letters; int v,w,x,y,z; while(cin>>target>>letters,target){ char *cp= new

2015-07-25 16:26:15 614

原创 POJ-1247

#include#includeusing namespace std;/** * return: * -1:can not find; * positive:find the first position; */int findPosition(vector v,int size, int requestHalfSum){ int sum=0; for(int i=

2015-07-19 18:43:58 659

原创 POJ-1247

#includeusing namespace std;bool isOod(int num){ if(num%2==0){ return false; }else{ return true; }}int calCycleLength(int n){ int len=0; if(n==1){ return 1; }else{ if(isOod(n)){

2015-07-19 16:48:52 622

原创 POJ-1118(超时,但未找到原因)

#include#include#includeusing namespace std;//y=kx+ztypedef struct{ double k; double z; int count;}Skzc;int main(int argc, char *argv[]){ //(x,y) multimap place; vector kzcVector; map

2015-07-13 01:16:13 1126

原创 POJ-1046

#include#include#includeusing namespace std;typedef struct coordinate{ int x; int y; int z;}SCoordinate;typedef struct input{ SCoordinate cTarget; SCoordinate cInput;}SInput;int main(i

2015-07-12 00:36:48 1081

原创 POJ-1007

#include#include#includeusing namespace std;int inversionCompute(string str){ int inversionSum=0; char *cp=(char*)str.data(); for(int i=0;i<str.length()-1;i++){ for(int j=i;j<str.length()-1;

2015-07-11 11:48:16 911

原创 POJ-1004

#includeusing namespace std;int main(int argc, char *argv[]){ double sum=0; float monthConsume; for(int i=0;i<12;i++){ cin>>monthConsume; sum+=monthConsume; } cout<<"$"<<sum/12<<endl;

2015-07-11 09:59:41 616

原创 POJ-1005

#include#include//#includeusing namespace std;#define PI 3.1415926/*return: years*/int recursionFunc(float rCurrent, float xYMin){ float r; if(rCurrent==0){ r=sqrt(100.0/PI); }else{

2015-07-11 00:52:13 864

原创 POJ-1003

#includeusing namespace std;int recursionFunc(int cardNum, float len){ if(1.0/(cardNum+1)>=len){ return cardNum; }else{ return recursionFunc(cardNum+1, len-(1.0/(cardNum+1))); }}int main(

2015-07-10 23:03:12 750

tpipv6.h(头文件)

在Windows IPv6套接字编程中会包含此头文件-tpipv6.h This module contains IPv6-specific extensions, and address family independent extensions to Winsock for the IPv6 Technology Preview.

2013-01-09

Putty资源合集

PuTTy终端 的功能,而是通过其完整安装包内的 psftp.exe 文件实现的。所以,要完成像文件上传这些操作, Windows 内必须有完整的 PuTTy 安装包而不仅仅是 putty.exe 这一个文件。

2012-11-30

windows界面下的网络编程

本书以简单明了的语言和形象生动的例子,介绍了WINSOCK(Windows Socket)网络编程,共分上、下两篇。上篇主要介绍了网络编程的基础知识,其中包括网络通信模型、TCP/IP协议、socket编程界面、WINSOCK的消息结构等。下篇主要介绍了五个网络协议和相应的网络程序。这些网络协议包括文件传输协议(FTP)、邮件发送协议(SMTP和POP3)、超文本传输协议(HTTP)、Gopher协议、CHECKET协议(作者自定义的)。在附录中,详细介绍了WINDSOCK的函数和超文本制作语言(HTML)。 本书论述通俗、技术实用,适合于计算机网络、计算机软件以及计算机应用等专业的大专院校师生和计算机软件开发人员使用与参考。

2011-12-28

tmote-sky硬件手册和开发使用手册

文档中包含tmote-sky的硬件手册,以及使用手册

2011-12-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除