自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 学习计划

 1,数据结构链表,栈,树各种排序算法2,编程语言c/c++,指针,虚函数,多态,c++标准库java,3,编程工具vc,eclipse,快捷键

2007-08-27 15:46:00 626

原创 逍遥网店所有版本后台数据备份漏洞

程序代码bordercolor="#333333" cellspacing="0" cellpadding="2">数据库在线维护从未备份数据库文件 ※提示:此操作需FSO功能支持。执行此操作前,请先关闭其它网页窗口,断开FTP连接。提交后,请耐心等待(请不要重复点击上面的按钮),完成时间视网络状况而定。请在网络空闲时进行此操作,执行此操作可能导致服务器变慢或不稳定。 

2007-11-13 14:22:00 2252 4

原创 约瑟夫问题的java简单算法

 // 约瑟夫环问题package com.neusoft;import java.util.Iterator;import java.util.Vector;public class Josefu {        private final static int NUM=3;    private static String people[]=new String[]{"a","b","c",

2007-08-29 20:55:00 1405 1

原创 STL线程安全的解决方法

Multithreading Issues STL is not thread protected, so you must provide locks on your collections if they will be used in multithreaded environment. The standard locking mechani

2007-08-28 12:12:00 3072 1

原创 STL Algorithms

 Algorithms Up to this point we have discussed how to use STL at a bare minimum, now we need to delve into the most important part of the collections. How do we manipulate a co

2007-08-28 12:10:00 682

原创 STL Collections General Class Methods

 STL Collections General Class Methodsempty Determines if the collection is empty size Determines the number of elements in the collection begin

2007-08-28 12:08:00 548

原创 STL Collection Types

 STL Collection Types Each STL collection type has its own template parameters, which will be discussed later. What type of collection you use is up to your needs and tastes. From

2007-08-28 12:06:00 614

原创 eclipse快捷键

 Ctrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当前行     Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓  当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)Alt+↑   当前行和上面一行交互位置(同上)Alt+←  前一个编辑的页面Alt+→  下一个编辑的页面(当然是针对上面那条

2007-08-28 11:15:00 504

原创 STL用法规则

 Rule 1:You can create STL containers that store either objects or pointer to objects.class TMyClass;typedef list TMyClassList; // Stores objects into the list containertypedef list TMyClass

2007-08-28 10:26:00 629

原创 STL

STL(Standard Template Library)是C++标准库的一部分(80%),是用C++ Template机制来表达泛型的库。STL,将算法与数据结构分离,在没有效率损失的前提下,得到了及大的弹性。六大组件容器(Container)算法(Algorithm)迭代器(Iterator)仿函数(Function object)适配器(Adaptor)空间配制器(allocato

2007-08-27 16:48:00 764

空空如也

空空如也

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

TA关注的人

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