C/C++
sukhoeing
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Using Visual C++ 2005 Express Edition with the Microsoft Platform SDK
原帖地址: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1995837&SiteID=1By Brian Johnson, Microsoft Corporation You can use Visual C++ Express to build powerful .NET Framework applications i原创 2007-08-17 10:30:00 · 1349 阅读 · 0 评论 -
C++ 学习练手 - 数组型栈的模板实现
#ifndef __STACKPRACTICE_H__#define __STACKPRACTICE_H__ 1namespace FengChen...{ template class Type> class Stack; template class T> std::ostream& operator(std::ostream& os, const Stac原创 2007-11-01 17:07:00 · 1023 阅读 · 0 评论 -
C++ 学习练手 - 数组型队列的模板实现
#ifndef __QUEUEPRACTICE_H__#define __QUEUEPRACTICE_H__ 1namespace FengChen...{ template class Type> class Queue; template class T> std::ostream& operator(std::ostream& os, const QueueT>&原创 2007-11-01 16:53:00 · 1344 阅读 · 0 评论 -
C++学习练手之- RadixSort
using namespace std; // 把32位整数看成8位的16进制整数void RadixSort(vector& v){ vector tempStor(v.size()); vector offset(0x10); vector count(0x10); // 按照16进制对32位整数进行排序,总共进行8趟 for (int digit =原创 2007-11-15 10:56:00 · 1031 阅读 · 0 评论 -
Effective C++学习记录之Things To Remember
对于C++程序员,Effective C++实在是必看的。最近看了一部分之后感觉每个item之后的Things To Remember非常有用,如果能总结下来时常看看思考思考,应该会相当有用,于是就想到写这篇文章,就当复习了,也希望能对学习C++的朋友有所帮助。 Item 1: View C++ as a federation of languages: Rules for e转载 2007-11-19 09:13:00 · 1600 阅读 · 0 评论 -
一个双向链表的单指针实现
Save precious bytes with a new twist on a standard data type. In the quest to make small devices cost effective, manufacturers often need to think about reducing the memory size. One option is to转载 2007-11-27 15:11:00 · 2960 阅读 · 0 评论
分享