我正在为计算机科学类(class)做一个项目。我编写了代码并使用 MinGW 对其进行了测试,它运行良好。然后我将代码复制到大学的 Linux 服务器并在那里进行了测试,因为我的教授就是以此为作业评分的。输出非常不同 - 就像它在输出中间打印了一个回车符。
有趣的是,使用Cygwin GCC(32位,4.7.2)编译运行时也会出现这个问题。有没有人知道为什么会发生这种情况以及如何解决?
Code和一个 sample input file (将命名为 lifepath.txt 并放置在与可执行文件相同的目录中)。
#include <iostream>
#include <fstream>
#include <map>
#include <set>
#include <string>
#include <cstdlib>
using namespace std;
bool younger(string s1, string s2) {
string y1 = s1.substr(s1.rfind('-')+1);
string y2 = s2.substr(s2.rfind('-')+1);
if(y1 < y2) return true;
else if(y1 > y2) return false;
string m1 = s1.substr(s1.find('-')+1, s1.rfind('-')-s1.find('-')-1);
string m2 = s2.substr(s2.find('-')+1, s2.rfind('-')-s2.find('-')-1);
if(m1 < m2) return true;
else if(m1 > m2) return false;
string d1 = s1.substr(0, s1.find('-'));
string d2 = s2.substr(0, s2.find('-'));
return d1 < d2;
}
int main() {
ifstream in("lifepath.txt");
map<int, int> pathcounts;
set<string> bdays;
string oldest, youngest;
map<string, int> years;
string line;
while(getline(in, line)) {
string monthday = line.substr(0, line.rfind('-'));
bdays.insert(monthday);
string num = line;
while(num.find('-') != string::npos) num.erase(num.find('-'));
int path = atoi(num.c_str()) % 9 + 1;
pathcounts[path]++;
if(youngest == "" || younger(line, youngest)) youngest = line;
if(oldest == "" || younger(oldest, line)) oldest = line;
years[line.substr(line.rfind('-')+1)]++;
}
for(int i = 1; i <= 9; i++) {
cout << i << ": " << pathcounts[i] << endl;
}
cout << endl;
cout << "The oldest birthday is " << oldest << endl;
cout << "The youngest birthday is " << youngest << endl;
cout << endl;
cout << "There are " << bdays.size() << " unique birthdays" << endl;
cout << endl;
string modeyear = "";
int modeyearcount = 0;
for(map<string, int>::iterator it = years.begin(); it != years.end(); it++) {
if(it->second > modeyearcount) {
modeyear = it->first;
modeyearcount = it->second;
}
else if(it->second == modeyearcount) modeyear += " " + it->first;
}
cout << "The mode of the birthyears is " << modeyear;
cout << ", appearing " << modeyearcount << " times" << endl;
return 0;
}
我将发布一个指向输出图像的链接作为回复,因为我没有足够的代表在帖子中有两个以上的链接。
最佳答案
这是因为不同的行尾,\r 在 Windows 的情况下意味着当您从文件读取数据并设置年数组时只转到行的开头。您使用键,不仅仅是 ####,还有 ####\r,最后一个符号在 cout 期间显示。
所以你需要改变你的代码:
years[line.substr(line.rfind('-')+1, 4)]++;
关于c++ - GCC 和 MinGW (C++) 之间奇怪的输出差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19371007/
对于具有离线功能的智能手机应用程序,我正在为Xml文件创建单向文本同步。我希望我的服务器将增量/差异(例如GNU差异补丁)发送到目标设备。这是计划:Time=0Server:hasversion_1ofXmlfile(~800kiB)Client:hasversion_1ofXmlfile(~800kiB)Time=1Server:hasversion_1andversion_2ofXmlfile(each~800kiB)computesdeltaoftheseversions(=patch)(~10kiB)sendspatchtoClient(~10kiBtransferred)Cl
为了将Cucumber用于命令行脚本,我按照提供的说明安装了arubagem。它在我的Gemfile中,我可以验证是否安装了正确的版本并且我已经包含了require'aruba/cucumber'在'features/env.rb'中为了确保它能正常工作,我写了以下场景:@announceScenario:Testingcucumber/arubaGivenablankslateThentheoutputfrom"ls-la"shouldcontain"drw"假设事情应该失败。它确实失败了,但失败的原因是错误的:@announceScenario:Testingcucumber/ar
我构建了两个需要相互通信和发送文件的Rails应用程序。例如,一个Rails应用程序会发送请求以查看其他应用程序数据库中的表。然后另一个应用程序将呈现该表的json并将其发回。我还希望一个应用程序将存储在其公共(public)目录中的文本文件发送到另一个应用程序的公共(public)目录。我从来没有做过这样的事情,所以我什至不知道从哪里开始。任何帮助,将不胜感激。谢谢! 最佳答案 无论Rails是什么,几乎所有Web应用程序都有您的要求,大多数现代Web应用程序都需要相互通信。但是有一个小小的理解需要你坚持下去,网站不应直接访问彼此
我的瘦服务器配置了nginx,我的ROR应用程序正在它们上运行。在我发布代码更新时运行thinrestart会给我的应用程序带来一些停机时间。我试图弄清楚如何优雅地重启正在运行的Thin实例,但找不到好的解决方案。有没有人能做到这一点? 最佳答案 #Restartjustthethinserverdescribedbythatconfigsudothin-C/etc/thin/mysite.ymlrestartNginx将继续运行并代理请求。如果您将Nginx设置为使用多个上游服务器,例如server{listen80;server
我正在使用puppet为ruby程序提供一组常量。我需要提供一组主机名,我的程序将对其进行迭代。在我之前使用的bash脚本中,我只是将它作为一个puppet变量hosts=>"host1,host2"我将其提供给bash脚本作为HOSTS=显然这对ruby不太适用——我需要它的格式hosts=["host1","host2"]自从phosts和putsmy_array.inspect提供输出["host1","host2"]我希望使用其中之一。不幸的是,我终其一生都无法弄清楚如何让它发挥作用。我尝试了以下各项:我发现某处他们指出我需要在函数调用前放置“function_”……这
我正在尝试在我的centos服务器上安装therubyracer,但遇到了麻烦。$geminstalltherubyracerBuildingnativeextensions.Thiscouldtakeawhile...ERROR:Errorinstallingtherubyracer:ERROR:Failedtobuildgemnativeextension./usr/local/rvm/rubies/ruby-1.9.3-p125/bin/rubyextconf.rbcheckingformain()in-lpthread...yescheckingforv8.h...no***e
这是一道面试题,我没有答对,但还是很好奇怎么解。你有N个人的大家庭,分别是1,2,3,...,N岁。你想给你的大家庭拍张照片。所有的家庭成员都排成一排。“我是家里的friend,建议家庭成员安排如下:”1岁的家庭成员坐在这一排的最左边。每两个坐在一起的家庭成员的年龄相差不得超过2岁。输入:整数N,1≤N≤55。输出:摄影师可以拍摄的照片数量。示例->输入:4,输出:4符合条件的数组:[1,2,3,4][1,2,4,3][1,3,2,4][1,3,4,2]另一个例子:输入:5输出:6符合条件的数组:[1,2,3,4,5][1,2,3,5,4][1,2,4,3,5][1,2,4,5,3][
在Cooper的书BeginningRuby中,第166页有一个我无法重现的示例。classSongincludeComparableattr_accessor:lengthdef(other)@lengthother.lengthenddefinitialize(song_name,length)@song_name=song_name@length=lengthendenda=Song.new('Rockaroundtheclock',143)b=Song.new('BohemianRhapsody',544)c=Song.new('MinuteWaltz',60)a.betwee
我正在检查一个Rails项目。在ERubyHTML模板页面上,我看到了这样几行:我不明白为什么不这样写:在这种情况下,||=和ifnil?有什么区别? 最佳答案 在这种特殊情况下没有区别,但可能是出于习惯。每当我看到nil?被使用时,它几乎总是使用不当。在Ruby中,很少有东西在逻辑上是假的,只有文字false和nil是。这意味着像if(!x.nil?)这样的代码几乎总是更好地表示为if(x)除非期望x可能是文字false。我会将其切换为||=false,因为它具有相同的结果,但这在很大程度上取决于偏好。唯一的缺点是赋值会在每次运行
我想使用spawn(针对多个并发子进程)在Ruby中执行一个外部进程,并将标准输出或标准错误收集到一个字符串中,其方式类似于使用Python的子进程Popen.communicate()可以完成的操作。我尝试将:out/:err重定向到一个新的StringIO对象,但这会生成一个ArgumentError,并且临时重新定义$stdxxx会混淆子进程的输出。 最佳答案 如果你不喜欢popen,这是我的方法:r,w=IO.pipepid=Process.spawn(command,:out=>w,:err=>[:child,:out])