c++编程时关于freopen的小问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++编程时关于freopen的小问题相关的知识,希望对你有一定的参考价值。
【问题描述】
平面上有N条直线,用方程Aix + Biy +Ci =0表示。这些直线没有三线共点的。现在要你计算出用这些直线可以构造出多少三角形?
【输入格式】
第1行:一个整数N(1 ≤ N≤ 300000)。
下面N行:每行3个整数:Ai, Bi 和Ci,表示对应直线方程的系数。不超过10^9.
【输出格式】
一行,一个整数。
input 1
6
0 1 0
-5 3 0
-5 -2 25
0 1 -3
0 1 -2
-4 -5 29
input 2
5
-5 3 0
-5 -3 -30
0 1 0
3 7 35
1 -2 -1
output 1
10
output 2
10
/////////////////////////////#include<cstdio>
#include<algorithm>
using namespace std;
struct edge
int a,b,c;
xian[300010];
bool cmp(edge x,edge y)
return 1LL*x.a*y.b>1LL*y.a*x.b;
long long ans=0;
int main()
// freopen("trokuti.in","r",stdin);
// freopen("trokuti.out","w",stdout);
int n;
scanf("%d",&n);
ans=1LL*(n)*(n-1)*(n-2)/6;
for(int i=1;i<=n;i++)
scanf("%d%d%d",&xian[i].a,&xian[i].b,&xian[i].c);
sort(xian+1,xian+n+1,cmp);
int l=1,r=1,len=1;
while(1)
if(1LL*xian[l].a*xian[r+1].b==1LL*xian[l].b*xian[r+1].a&&r<n)
len++;
r++;
if(r==n||1LL*xian[l].a*xian[r+1].b!=1LL*xian[l].b*xian[r+1].a)
if(len>=2)
ans-=1LL*len*(len-1)*(n-len)/2;
if(len>=3)
ans-=1LL*(len-1)*(len-2)*len/6;
len=0;
l=r+1;
r++;
if(l>n||r>n)
break;
printf("%lld",ans);
/////////////////////////////
代码如上,总之,去掉freopen两个样例是能过的,也能输出结果,问题加了这个freopen之后,程序会莫名的死机卡掉。以前都是加freopen编译运行后直接显示按任意键返回,这次直接显示等待输入,而且卡死无法输入,问题好像出现在while循环那里,注释掉while,freopen可以正常使用,但是没有freopen的时候程序明明是可以得出结果的。。这是为什么,从没遇到这种情况,求神犇不吝赐教!!!
我学算法竞赛一直用这个啊。。。标程也用freopen。。今天突然出这个错我我也很绝望。。按理说不应该有这种事情..
追答FILE和fstream都不允许使用吗?这两个文件输入还是很好用的,我的编译器不支持freopen,scanf,它说不安全,所以我也不知道怎么帮你
C++ fstream 与freopen 小结
转发自: https://blog.csdn.net/seadplus/article/details/7802346 fstream()解析
https://blog.csdn.net/jacky_chenjp/article/details/70237418 freopen()解析
- C++文件流:
fstream // 文件流
ifstream // 输入文件流
ofstream // 输出文件流
#include <fstream>
//创建一个文本文件并写入信息
//同向屏幕上输出信息一样将信息输出至文件
#include<iomanip.h>
#include<fstream>
void main()
ofstream ofs("C:\\\\example.txt"); //打开文件用于写,若文件不存在就创建它
if (!ofs) return; //打开文件失败则结束运行
f1 << setw(20) << "Name: " << "Beethoven" << endl; //使用插入运算符写文件内容
f1 << setw(20) << "song: " << "Moonlight Sonata" << endl;
f1.close(); //关闭文件
文件操作:【文件打开选项】
ios::in = 0x01, //供读,文件不存在则创建(ifstream默认的打开方 式)
ios::out = 0x02, //供写,文件不存在则创 建,若文件已存在则清空原内容(ofstream默认的打开方式)
ios::ate = 0x04, //文件打开时,指针在文件最后。可改变指针的位置,常和in、out联合使用
ios::app = 0x08, //供写,文件不存在则创建,若文件已存在则在原文件内容后写入 新的内容,指针位置总在最后
ios::trunc = 0x10, // 在读写前先将文件长度截断为0(默认)
ios::nocreate = 0x20, //文件不存在时产生错误,常和in或app联合使用
ios::noreplace = 0x40, //文件存在时产生错误,常和out联合使用
ios::binary = 0x80 //二进制格式文件
文件保护方式选择项:
filebuf::openprot; //默认的兼容共享方式
filebuf::sh_none; //独占,不共享
filebuf::sh_read; //读共享
filebuf::sh_write; //写共享
打开文件的方法
调用构造函数时指定文件名和打开模式
ifstream f("d:\\\\12.txt", ios::nocreate); //默认以 ios::in 的方式打开文件,文件不存在时操作失败
ofstream f("d:\\\\12.txt"); //默认以 ios::out的方式打开文件
fstream f("d:\\\\12.dat", ios::in|ios::out|ios::binary); //以读 写方式打开二进制文件
使用Open成员函数
fstream f;
f.open("d:\\\\12.txt",ios::out); //利用同一对象对多个文件进行操作时要用到open函数
检查是否成功打开
成功:
if (f) ... //对ifstream、ofstream对象可 用,fstream对象不可用。 mysql
if (f.good()) ...
失败:
if (!f) ... //!运算符重载
if (f.fail()) ...
读写操作
使 用<<,>>运算符
只能进行文本文件的读写操作,用于二进制文件可能会产生错误。
使用函数成员 get、put、read、write等
经常和read配合使用的函数是 gcount(),用来获得实际读取的字节数。
读写二进制文件注意事项
打开方式中必须指定ios::binary,否则读写会出错
用read\\write进行读写操作,而不能使用插入、提取运算符进行操作,否则 会出错。
使用eof()函数检测文件是否读结束,使用gcount()获得实际读取的字节数
关闭文件
使用成员函数close, 如: oracle
f.close();
利用析构函数
对象生命期结 束时会检查文件是否关闭,对没有关闭的文件进行关闭操作。
随机读写文件
通过移动文件读写指针,可在文件指定位置进行读写。
seekg(绝对位置); //绝对移动, //输入流操作
seekg(相对位置,参照位置); //相对操作
tellg(); //返回当前指针位置
seekp(绝对位置); //绝对移动, //输出流操作
seekp(相对位置,参照位置); //相对操作
tellp(); //返回当前指针位置
参照位置: mysql
ios::beg = 0 //相对于文件头
ios::cur = 1 //相对于当前位置
ios::end = 2 //相对于文件尾
写文本文件的示例
//为能够正确读出写入文件的各数据,各数据间最好要有分隔
#include<fstream>
void main()
fstream f("d:\\\\try.txt", ios::out);
f << 1234 << ' ' << 3.14 << 'A' << "How are you"; //写入数据
f.close();
f.open("d:\\\\try.txt", ios::in);
int i;
double d;
char c;
char s[20];
f >> i >> d >> c; //读取数据
f.getline(s,20);
cout << i << endl; //显示各数据
cout <<d << endl;
cout << c << endl;
cout << s << endl;
f.close();
运 行结果:
1234
3.14
A
How are you
Press any key to continue
显示文本文件的内容
//使用get()一次读一个字符--------------------------------方案一
#include<fstream>
void main()
ifstream fin("d:\\\\简介.txt", ios::nocreate);
if (!fin)
cout << "File open error!\\n";
return;
char c;
while ((c=fin.get()) != EOF) cout << c; //注意结束条件的判断
fin.close();
//使用get(char *,int n,char delim='\\n')一次读多个字符----方案二
//巧妙利用文本文件中不会有字符'\\0'的特点进行读取
#include<fstream>
void main()
ifstream fin("d:\\\\简介.txt",ios::nocreate);
if(!fin)
cout<<"File open error!\\n";
return;
char c[80];
while(fin.get(c,80,'\\0')!=NULL)cout<<c; //注意结束条件的判断
fin.close();
//使用read(char *,int n)读文件---------------------------方案三
#include<fstream.h>
void main()
ifstream fin("d:\\\\简介.txt",ios::nocreate);
if(!fin)
cout<<"File open error!\\n";
return;
char c[80];
while(!fin.eof()) //判 断文件是否读结束
fin.read(c,80);
cout.write(c,fin.gcount());
fin.close();
拷贝文件
//二进制文件操作示例 ssh
#include<fstream>
void main()
ifstream fin("C:\\\\1.exe", ios::nocreate|ios::binary);
if (!fin)
cout << "File open error!\\n";
return;
ofstream fout("C:\\\\2.exe", ios::binary);
char c[1024];
while (!fin.eof())
fin.read(c, 1024);
fout.write(c, fin.gcount());
fin.close();
fout.close();
cout << "Copy over!\\n";
一个打开并检查输入文件的程序:
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
ifstream& open_file(ifstream &in,const string &file)
in.close();
in.clear();
in.open(file.c_str());
return in;
int main()
ifstream file;
open_file(file,"1.txt");
string s;
while(getline(file,s))
cout<<s<<endl;
file.close();
return 0;
- freopen
函数名:freopen
标准声明:FILE *freopen( const char *path, const char *mode, FILE *stream );
所在文件:<stdio.h>
参数说明:
path:文件名,用于存储输入输出的自定义文件名。
mode:文件打开的模式。和fopen中的模式(如 r-只读, w-只写)相同。
stream:一个文件,通常使用标准流文件。
返回值:成功,返回指向文件的指针;失败,返回NULL
功能:实现重定向,把预定义的标准流文件定向到由path指定的文件中。
标准流文件具体是指stdin、stdout和stderr。
其中stdin是标准输入流,默认为键盘;
stdout是标准输出流,默认为屏幕;
stderr是标准错误流,默认为屏幕;
下面以在VC下调试“计算a+b”的程序举例。
C语法:
#include <stdio.h>
int main()
int a,b;
freopen("D:\\\\in.txt","r",stdin); //输入重定向,输入数据将从D盘根目录下的in.txt文件中读取
freopen("D:\\\\out.txt","w",stdout); //输出重定向,输出数据将保存在D盘根目录下的out.txt文件中
while(scanf("%d %d",&a,&b)!=EOF)
printf("%d\\n",a+b);
fclose(stdin);//关闭重定向输入
fclose(stdout);//关闭重定向输出
return 0;
C++语法:
#include <stdio.h>
#include <iostream>
int main()
int a,b;
freopen("D:\\\\in.txt","r",stdin); //输入重定向,输入数据将从D盘根目录下的in.txt文件中读取
freopen("D:\\\\out.txt","w",stdout); //输出重定向,输出数据将保存在D盘根目录下的out.txt文件中
while(cin>>a>>b)
cout<<a+b<<endl; // 注意使用endl
fclose(stdin);//关闭重定向输入
fclose(stdout);//关闭重定向输出
return 0;
freopen("D:\\\\out.txt","w",stdout)的作用就是把stdout重定向到D:\\\\out.txt文件中,这样输出结果就可以通过打开out.txt文件查看。
以上是关于c++编程时关于freopen的小问题的主要内容,如果未能解决你的问题,请参考以下文章
寻找一本关于 Windows C++ GUI 编程的书 [关闭]
算法笔记 C++编程的小技巧 HERODING的LeetCode之路