gpt4 book ai didi

c++ - 在 C++ 中返回两个字符串

转载 作者:行者123 更新时间:2023-11-30 03:34:54 24 4
gpt4 key购买 nike

我正在为即将举行的 C++ 考试做练习。考虑以下练习:

A travel agency uses lists to manage its trips. For each trip the agency registers its point of departure, point of arrival, distance and time/duration

1) Define the necessary structures to represent a list of trips

2) Write a function that, given integer i returns the point of departure and point of arrival of the trip in position i

定义结构很容易:

struct list{
char departure[100];
char arrival[100];
double distance;
double time;
list* next = NULL;
};

我的问题是函数。实际工作中,找到第i行很容易。但是我怎样才能返回两个字符数组/字符串出发和到达?如果这是我考试中的一道题,我会这样解决:

typedef list* list_ptr;

list_ptr get_trip(list_ptr head, const int i){
if(i<0 || head==NULL){
return NULL;
}

for(int k = 0; k<i;k++){
head = head->next;
if(head==NULL){
return NULL;
}
}

return head;
}

我正在返回一个指向列表元素的指针。然后必须打印出发和到达。通过使用返回类型为 char* 的函数,我可以轻松地只返回出发时间或到达时间。如何正确返回 2 个字符串?我知道有一些方法可以使用 std::tuple 来做到这一点,但我不能使用它,因为我们在讲座中没有讲过它(我们只有真正基础的东西,直到类(class))。

如果不使用额外的库就不可能返回两个字符串,我说得对吗?

干杯

最佳答案

好的,首先,您的 list 类型有一些问题。不要在 C++ 中使用 char[] 除非你真的、真的必须这样做(注意:如果你认为你必须这样做,那你可能错了)。 C++ 提供了一个标准库,在其应用程序中非常出色(好吧,与 C 相比),您应该使用它。特别是,我说的是 std::string。您可能对距离和持续时间使用 double 没问题,尽管缺少单位意味着您会遇到麻烦。

让我们试试这个:

struct Trip {
std::string departure;
std::string arrival;
double distance_km;
double duration_hours;
};

现在您可以使用 std::vectorstd::liststd::slist,或滚动您自己的列表。让我们假设最后一个。

class TripList {
public:
TripList() = default;

// Linear in i.
Trip& operator[](std::size_t i);
const Trip& operator[](std::size_t i) const;

void append_trip(Trip trip);
void remove_trip(std::size_t i);

private:
struct Node {
Trip t;
std::unique_ptr<Node> next;
};
std::unique_ptr<Node> head;
Node* tail = nullptr; // for efficient appending
};

我会把它的实现留给你。请注意,list 和 trip 是不同的概念,因此我们正在编写不同的类型来处理它们。

现在你可以写一个简单的函数了:

std::pair<string, string> GetDepartureAndArrival(const TripList& list, std::size_t index) {
const auto& trip = list[index];
return {trip.departure, trip.arrival};
}

关于c++ - 在 C++ 中返回两个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41663658/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com