我正在用C ++编写下一个排列算法。
禁止使用for和while(我们应该只使用迭代器执行所有操作)。
算法的第一步是获得最大的非增加后缀。我很震惊,因为我不理解如何只使用迭代器在条件中找到某些东西。
答案 0 :(得分:1)
您可以使用Caused by: org.h2.jdbc.JdbcSQLException:
Schema "SRTD" not found; SQL statement:
alter table srtd.user add constraint FKec3wluojmxshecxg06rihvlwf foreign key (idPassanger) references srtd.passanger [90079-176]
中定义的std::find
或std::for_each
,例如示例使用algorithm
:
C++14