- 博客(14)
- 资源 (26)
- 收藏
- 关注
原创 write read tlsversion 不一致
,},},},},},<empty>},},},..!.$..j....zgB..9R...},},..!.$..j..V<..f^z.s"Alert": {
2023-11-09 15:25:36
215
1
转载 lvs配置
https://blog.youkuaiyun.com/Ki8Qzvka6Gz4n450m/article/details/79119665http://www.cnblogs.com/liwei0526vip 使用LVS实现负载均衡原理及安装配置详解 负载均衡集群是 load balance 集群的简写,翻译成中文就是负载均衡集群。常用的负载均衡开源软件有nginx、lvs、haproxy,商业的硬件...
2018-07-11 10:41:49
679
原创 学生信息管理boost版
#pragma once #include <iostream> #include <string> #include <boost/archive/text_oarchive.hpp> #include <boost/archive/text_iarchive.hpp> using namespace std; class S...
2014-10-16 13:32:02
172
原创 学生信息管理
1 学生类: #pragma once #include <iostream> #include <string> using namespace std; class Student { public: Student(void) { } Student(int id,string name,double score):_...
2014-09-07 18:24:03
198
原创 单链表 模版
#include #include using namespace std; #ifndef _SINGLE_LINKED_LIST_ #define _SINGLE_LINKED_LIST_ template class Node { private: Node* pNext; T* pData; public: Node();
2014-08-25 00:04:50
382
原创 复数类
#ifndef _COMPLEX_H_ #define _COMPLEX_H_ class Complex { public: Complex(double real,double imag):_real(real),_imag(imag) { }; ~Complex(){ }; void display(); Complex operator+(const Co
2014-08-17 17:51:50
341
原创 c++ 单链表
#ifndef _linknode_h_ #define _linknode_h_ class Node { private: Node* pNext; void* pData; public: Node(void* pData); ~Node(); bool equals(const Node& node) ; Node* next...
2014-08-11 01:35:34
127
原创 实现前后插入,以及按值删除
#ifndef _LINK_NODE_ #define _LINKE_NODE_ typedef struct Node { struct Node* pNext; void* pData; } NodeStruct, *pNodeStruct; typedef struct SingleLinkedList { pNodeS...
2014-07-22 19:56:11
319
原创 c语言单链表题目
对C语言来说,使用指针是创建数据结构所必不可少的工具, 例如需要定义一个单向链表,往往使用以下的方式: typedef struct Node { struct Node* pNext; void* pData; } NodeStruct, *pNodeStruct; typedef struct SingleLink...
2014-07-22 19:54:04
349
原创 C++中类访问权限控制
第一:private, public, protected 访问标号的访问范围,在没有继承的情况下: private: 只能由1.该类中的函数、2.其友元函数访问。 不能被任何其他访问,该类的对象也不能访问。 protected: 可以被1.该类中的函数、2.子类的函数、以及3.其友元函数访问。 但不能被该类的对象访问。 public: 可以被1.该类中的函数、2.子类的函数、3.
2013-09-04 18:35:41
609
原创 c语言模拟函数重载
c语言中没有重载,但是可以通过函数指针模拟,但是模拟的终究是模拟的,根本不是真正的重载; #include int f1(int a,int b) { return a+b; }; int f2(int a,int b) { return a-b; } int doaction(int a,int b ,int (*call)(int,
2013-07-08 17:25:16
899
原创 通过命令行给c的main方法传参数
paramc:参数数量,包括执行程序的命令(./a.out)也算参数; int main(int paramc,char** param) { printf("%d\n",paramc); while(*param) //*param千万不能写成param { printf("%s\n",(char*)
2013-07-08 16:50:15
689
原创 修正《 里约大冒险》字幕的程序
<br />修正《 里约大冒险》字幕的程序2011-05-21 15:20 (分类:默认分类)<br /> 在公司加班1周,累的要命。周末回来放松下,看看 《里约大冒险》,下载下来竟然没字幕,遂上网搜索,下载了一个外挂字幕,翻译的乱七八糟,估计是用谷歌翻译或爱词霸翻译的。下载
2011-05-21 15:22:00
605
MySQL-server-community-5.1.30-0.rhel4.i386.rpm
2012-03-01
zkonlie 开发包 cd光盘
2011-06-28
多格式阅读器 阅览器 ,tif pdg pdf 等等
2011-06-25
rpm_tar_gz_tgz_bz_bz2_等文件包安装方法
2011-06-21
commons-net-2.0
2011-06-21
jnative 1.4
2011-06-21
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人