12月15日学习总结

项目:

           c++语法学习

学习成功展示

文件的读写

   ios::in             只读

     ios::out            只写

     ios::app            从文件末尾开始写,防止丢失文件中原来就有的内容

     ios::binary         二进制模式

     ios::nocreate       打开一个文件时,如果文件不存在,不创建文件

     ios::noreplace      打开一个文件时,如果文件不存在,创建该文件

     ios::trunc          打开一个文件,然后清空内容

     ios::ate            打开一个文件时,将位置移动到文件尾

 ios::beg   文件头

     ios::end   文件尾

     ios::cur   当前位置

二分

789. 数的范围 - AcWing题库

原题链接

#include
#include
using namespace std;
int n,m;
int q[100010];
int main()
{
    cin>>n>>m;
    for(int i=0;i>q[i];
    while(m--)
    {
        int x;
        cin>>x;
        int l=0,r=n-1;
        while(l=x)
                r=mid;
            else
                l=mid+1;
        }
        if(q[l]!=x)
            cout<<"-1"<<" "<<"-1"<

你可能感兴趣的:(c++,c语言)