08 2012 档案

摘要:该类转自:http://blog.csdn.net/byshome/article/details/5801991,稍作修改using System;using System.Net;using System.Net.Sockets;using System.Collections.Generic;using System.Text;using System.IO;using System.Globalization;using System.Text.RegularExpressions;namespace FTP{ public class FTPHelper : IDisposab... 阅读全文
posted @ 2012-08-03 19:08 MagiCube 阅读(5517) 评论(0) 推荐(1)
摘要:最近在看数据结构,于是乎就自动动手写个简单的Vector:#ifndef _CUSTOM_STRUCT#define _CUSTOM_STRUCT#define CAPACITY_VOLUMN 1000template<class object>class CustomVector{ typedef object* iterator; typedef object* const const_iterator;private: int size; int capacity; object* objects; void Reserve(int newSize) { object* ol 阅读全文
posted @ 2012-08-01 21:56 MagiCube 阅读(1264) 评论(0) 推荐(0)