#include<iostream.h>

#include<stdlib.h>

#include<string.h>

#include<fstream.h>

struct staff{

long staNum;

char staName[500];

long phoNum;

long num;

char staAddr[1000];

}staf,staf1;

void main(){

fstream fstr1,fstr2,fstr,fstrt;

char i,fn1[80],fn2[80],fn[80],fnt[80],*p1,*p2,*p,*pt,str[1000];

//staff staf1;

int a,b;

p1=&fn1[0]; p2=&fn2[0]; p=&fn[0]; pt=&fnt[0];

cout<<"Please input the file name of fn1:\n";

//cin>>p1;

//fstr1.open(p1,ios::binary|ios::in|ios::out);     //1

fstr1.open("E:\\新建文件夹\\新建文件夹\\a.bat",ios::binary|ios::in|ios::out);

if(!p1){ cerr<<"Can't open the file fn1.\n"; return; }

fstr1.seekp(0,ios::end);

cout<<"Please input the number i(Y|y).\n";

cin>>i;

while(i=='Y'||i=='y'){

cout<<"Please input the number staf.\n";

cin>>staf.staNum>>staf.staName>>staf.phoNum>>staf.num>>staf.staAddr;

fstr1.write((char *) &staf,sizeof(staf));    //文件名对象.write函数里的buffer类型只能是(char *),不能是其他类型fstr1.write((int *) &a,sizeof(a));

cout<<"Please input the number i.(Y|y)\n";

cin>>i;  }

cout<<"Please input the file name of fn2:\n";

//cin>>p2;

//fstr2.open(p2,ios::binary|ios::in|ios::out);   //2

fstr2.open("E:\\新建文件夹\\新建文件夹\\b.bat",ios::binary|ios::in|ios::out);

if(!p2){ cerr<<"Can't open the file fn2.\n"; return; }

fstr2.seekp(0,ios::end);

cout<<"Please input the number i.(Y|y)\n";

cin>>i;

while(i=='Y'||i=='y'){

cout<<"Please input the number staf1.\n";

cin>>staf1.staNum>>staf1.staName>>staf1.phoNum>>staf1.num>>staf1.staAddr;

fstr2.write((char *) &staf1,sizeof(staf1));

cout<<"Please input the number i(Y|y).\n"; cin>>i;  }

cout<<"Please input the file name of fn.\n";    //3

//cin>>p;

//fstr.open(p,ios::binary|ios::in|ios::out);

fstr.open("E:\\新建文件夹\\新建文件夹\\file.bat",ios::binary|ios::in|ios::out);

if(!p){ cerr<<"Can't open the file of fn.\n"; return; }

fstr1.seekp(0,ios::end);

long pEnd1=fstr1.tellp();

fstr2.seekp(0,ios::end);

long pEnd2=fstr2.tellp();

fstr1.seekp(0,ios::beg);

fstr2.seekp(0,ios::beg);

while(fstr1.tellp()!=pEnd1&&fstr2.tellp()!=pEnd2){

fstr1.read((char *) &staf,sizeof(staf));

fstr2.read((char *) &staf1,sizeof(staf1));

if(staf.staNum>>staf1.staNum) fstr.write((char *) &staf,sizeof(staf));

else fstr.write((char *) &staf1,sizeof(staf1));

//fstr<<staf1.staNum<<ends<<staf1.staName<<ends<<staf1.phoNum<<ends<<staf1.num<<staf1.staAddr;     }

while(fstr1.tellp()!=pEnd1) fstr.write((char *) &staf,sizeof(staf));

while(fstr2.tellp()!=pEnd2) fstr.write((char *) &staf1,sizeof(staf1));

cout<<"Please input the file name of fn4.\n";    //4

//cin>>pt;

//fstrt.open(pt,ios::in|ios::out);

fstrt.open("E:\\新建文件夹\\新建文件夹\\l.txt",ios::in|ios::out);

if(!pt){ cerr<<"Can't open the file of fn.\n"; return; }

fstr.seekg(0,ios::end);

long pEnd3=fstr.tellg();

fstr.seekg(0,ios::beg);

while(fstr.tellg()!=pEnd3){

fstr.read((char *) &staf,sizeof(staf));

fstrt<<staf.staNum<<ends<<staf.staName<<ends<<staf.phoNum<<ends<<staf.num<<staf.staAddr<<endl;

cout<<staf.staNum<<ends<<staf.staName<<ends<<staf.phoNum<<ends<<staf.num<<staf.staAddr<<endl;

} cout<<endl; fstrt.close();

cout<<"Please input the file name of fn4.\n";    //5

//cin>>pt;

//fstrt.open(pt,ios::in|ios::out);

fstrt.open("E:\\新建文件夹\\新建文件夹\\l.txt",ios::in|ios::out);

if(!pt){ cerr<<"Can't open the file of fn.\n"; return; }

//while(fstrt.tellg()!=ptEnd){ fstrt.getline(fn,800);

//cout<<staf.staNum<<ends<<staf.staName<<ends<<staf.phoNum<<ends<<staf.num<<staf.staAddr<<endl; } //二进制的判断方法

do{ fstrt.getline(str,1000); cout<<str<<endl;  }while(!fstrt.eof());

fstr1.close(); fstr2.close(); fstr.close(); fstrt.close();

} */

C++->10.3.6.设有两个按升序排列的二进制文件a和b,将他们合并成一个新的升序二进制数据文件file。的更多相关文章

  1. 将两个列不同的DataTable合并成一个新的DataTable

    /// <summary>         /// 将两个列不同(结构不同)的DataTable合并成一个新的DataTable         /// </summary> ...

  2. 将两个数组相同index的value合并成一个新的value组成一个新的数组

    将两个数组相同index的value合并成一个新的value组成一个新的数组 前提: 这两个数组的长度相同 生成后的新数组长度也相同 返回值都是对象 把rows对象的key和value弄成两个数组, ...

  3. Java-Runoob-高级教程-实例-字符串:10. Java 实例 - 测试两个字符串区域是否相等-uncheck

    ylbtech-Java-Runoob-高级教程-实例-字符串:10. Java 实例 - 测试两个字符串区域是否相等 1.返回顶部 1. Java 实例 - 测试两个字符串区域是否相等  Java ...

  4. python之最强王者(10)———文件(File)、输入输出的基本操作

    1. Python 文件I/O 本章只讲述所有基本的的I/O函数,更多函数请参考Python标准文档. 2.打印到屏幕 最简单的输出方法是用print语句,你可以给它传递零个或多个用逗号隔开的表达式. ...

  5. ORA-01578: ORACLE 数据块损坏 (文件号 10, 块号 57896)ORA-01110: 数据文件 10: '/data/oradata/prod35.dbf'

    https://community.oracle.com/thread/3540795 概述 ------------- 数据库坏块(corruption) 的类型可以按照坏块所属对象的不同,分为用户 ...

  6. delphi 创建DBASE和FOXPRO两类DBF数据文件的差异

    delphi 创建DBASE和FOXPRO两类DBF数据文件的差异,主要有几点: 1.创建方法不同 DBASE的创建方法: Self.Table1.Close; Self.Table1.Active ...

  7. 如何定义让两个div横向排列

    方法一: 一般情况,默认的div是写一个换一行,那么如何定义两个div横向排列而不换行呢? div默认的display属性是block.所以每一个div都是新的一行,现在把display换成inlin ...

  8. 有两个序列A和B,A=(a1,a2,...,ak),B=(b1,b2,...,bk),A和B都按升序排列。对于1<=i,j<=k,求k个最小的(ai+bj)。要求算法尽量高效。

    有两个序列A和B,A=(a1,a2,...,ak),B=(b1,b2,...,bk),A和B都按升序排列.对于1<=i,j<=k,求k个最小的(ai+bj).要求算法尽量高效. int * ...

  9. python将两个数组合并成一个数组的两种方法的代码

    内容过程中,把写内容过程中常用的内容收藏起来,下面的资料是关于python将两个数组合并成一个数组的两种方法的内容,希望能对小伙伴们有帮助. c1 = ["Red","G ...

随机推荐

  1. HDU_5456_数位dp

    http://acm.hdu.edu.cn/showproblem.php?pid=5456 转化成a=b+c,dp[i][a][b][c]表示剩余i木棒,a是否有进位,b是否首尾,c是否首位,注意每 ...

  2. ELK:日志收集分析平台

    简介 ELK是一个日志收集分析的平台,它能收集海量的日志,并将其根据字段切割.一来方便供开发查看日志,定位问题:二来可以根据日志进行统计分析,通过其强大的呈现能力,挖掘数据的潜在价值,分析重要指标的趋 ...

  3. 一. 数据分片和路由 <<大数据日知录>> 读书笔记

    本章主要讲解大数据下如何做数据分片,所谓分片,即将大量数据分散在不同的节点,同时每个存储节点还要做副本备份. 而一般的抽象分片方法是, 先将数据映射到一个分片空间,这是多对一的关系,即一个数据分片区间 ...

  4. docker pull 时报错Create more free space in thin pool or use dm.min_free_space option to change behavior

    docker pull 时报错: failed to register layer: devmapper: Thin Pool has 107394 free data blocks which is ...

  5. C#基础知识学习(2)string类中的方法

    1.Compare 比较字符串 用来比较2个字符串的长度大小和值是否相同,相同则返回0,当x比y小返回-1,否则返回1,如果长度相同,且值不同,则返回1,代码如下 public static void ...

  6. 用c语言实现简单的五子棋

    用c语言实现简单的五子棋 这个小游戏是从零开始的实现的,框架灵感来自于小游戏<走迷宫>. 游戏代码配置: 二维数组+简单逻辑+getch读取键盘+windows函数(刷屏,改颜色,改窗口大 ...

  7. Linux运维-磁盘存储---3.LVM

    LVM的工作原理 LVM( Logical Volume Manager)逻辑卷管理,是在磁盘分区和文件系统之间添加的一个逻辑层,来为文件系统屏蔽下层磁盘分区布局,提供一个抽象的盘卷,在盘卷上建立文件 ...

  8. 记网站部署中一个奇葩BUG

    网页中引用的文件名不要带 adv 等 近日在写好一个网页后就把他部署到apache上测试,结果用chrome访问时有个背景图片总显示不出来,但是用firefox等却一切正常, 关键是我用windows ...

  9. MySQL中的索引、左连接、右连接、join、sql执行顺序

    逻辑架构: 1.连接层 2.服务层 3.引擎层(插拔式) 4.存储层 存储引擎: 常用的有:MyISAM.InnoDB 查看命令:show variables like '%storage_engin ...

  10. Date() 按条件打印当前日期的月份和周

    条件:打印 月份-第几周 若本月前七天不在全在第一周则这一周计入到上月第五周. 分析: 1.条件判断分别处理前七天和大于等于七天的数据: 2.当前月的7号是关键,如果在周天就不需要放到上月,如果不在周 ...