0

我想编写一个 C++(C,如果它为我的问题提供简单的解决方案)程序,可以在其中输入,直到他选择通过按 Ctrl+D 等按钮组合来表示输入结束。我对此有两个问题。

  1. 哪些组合键用于表示Xterm中的输入结束?(Ctrl+C 或 Z 不起作用)
  2. while()当一个人按下1中回答的组合键时,我的循环中的逻辑代码应该是什么?

    map<int,string>info;
    string name;
    int age;
    cin>>name;
    while( ????????? ){   //Input till EOF , missing logic
        cin>>age;
        info.insert( pair<int,string>(age,name) );
        cin>>name;
    }
    //sorted o/p in reverse order
    map<int,string> :: iterator i;
    for(i=info.end(); i !=info.begin(); i--)
        cout<<(*i).second<<endl;
    cout<<(*i).second<<endl;
    

    }

程序在从终端接收到输入信号结束时继续。

我用gcc/g++ (Ubuntu/Linaro 4.7.3-1ubuntu1) 4.7.3.

4

2 回答 2

0

用一个istream_iterator

等待EOF的默认构造函数

Ctrl+ZF6+ENTER在窗户上

Ctrl+D在 Linux 上

我会使用代理类即时插入地图,如下所示:

#include <map>
#include <iterator>
#include <algorithm>
#include <string>
#include <functional>
#include <iostream>

template<class Pair>
class info_reader // Proxy class, for overloaded << operator
{
public:
        typedef Pair pair_type;

        friend std::istream& operator>>(std::istream& is, info_reader& p)
        {
              return is >> p.m_p.first >> p.m_p.second;
        }

        pair_type const& to_pair() const
        {
                return m_p; //Access the data member
        }
private:
        pair_type m_p;                
};


int main()
{
    typedef std::map<int, std::string> info_map;

    info_map info;
    typedef info_reader<std::pair<int, std::string> > info_p;

       // I used transform to directly read from std::cin and put into map
        std::transform(
            std::istream_iterator<info_p>(std::cin),
            std::istream_iterator<info_p>(),
            std::inserter(info, info.end()),
            std::mem_fun_ref(&info_p::to_pair) //Inserter function
                );

//Display map
for(info_map::iterator x=info.begin();x!=info.end();x++)
   std::cout<<x->first<< " "<<x->second<<std::endl;
}
于 2013-07-28T19:54:27.377 回答
0

while 条件应该类似于:

while(the_key_combination_pressed_in_the_last_loop!=what_combination_will_exit_while)
{
  cin>>age;
  if(age!=what_combination_will_exit_while)
  {
      info.insert( pair<int,string>(age,name) );
      cin>>name;
  }
}
于 2013-07-28T19:28:23.047 回答