1. You have an array of logs. Each log is a space delimited string of words.
  2. For each log, the first word in each log is an alphanumeric identifier. Then, either:
  3. Each word after the identifier will consist only of lowercase letters, or;
  4. Each word after the identifier will consist only of digits.
  5. We will call these two varieties of logs letter-logs and digit-logs. It is guaranteed that each log has at least one word after its identifier.
  6. Reorder the logs so that all of the letter-logs come before any digit-log. The letter-logs are ordered lexicographically ignoring identifier, with the identifier used in case of ties. The digit-logs should be put in their original order.
  7. Return the final order of the logs.
  8. Example 1:
  9. Input: logs = ["dig1 8 1 5 1","let1 art can","dig2 3 6","let2 own kit dig","let3 art zero"]
  10. Output: ["let1 art can","let3 art zero","let2 own kit dig","dig1 8 1 5 1","dig2 3 6"]
  11. Constraints:
  12. 0 <= logs.length <= 100
  13. 3 <= logs[i].length <= 100
  14. logs[i] is guaranteed to have an identifier, and a word after the identifier.

这题首先定义了两种日志格式,一种是全字符类型的日志,还有一种是全数字的类型。我们要对这种日志做个排序,需要将全字符日志的排在最前面,然后根据字典序做排序,然后把全数字的放在后面,不做排序。

题意中只说了全字符的排序,去掉第一个标识字符,然后做排序,所以我这里踩了个坑,没有对全字符内容一样的,再对标识符做排序,导致有一个case错了,后面改了之后就好了,这个要留心。

  1. class ReorderDataInLogFiles : public Solution {
  2. public:
  3. void Execute() {
  4. std::cout << "Case 1: ";
  5. auto strs = reorderLogFiles(vector<string>{"dig1 8 1 5 1",
  6. "let1 art can",
  7. "dig2 3 6",
  8. "let2 own kit dig",
  9. "let3 art zero"});
  10. for (auto &v : strs) {
  11. std::cout << v << std::endl;
  12. }
  13. std::cout << std::endl;
  14. std::cout << "Case 2: ";
  15. strs = reorderLogFiles(vector<string>{"a1 9 2 3 1",
  16. "g1 act car",
  17. "zo4 4 7",
  18. "ab1 off key dog",
  19. "a8 act zoo",
  20. "a2 act car"});
  21. for (auto &v : strs) {
  22. std::cout << v << std::endl;
  23. }
  24. std::cout << std::endl;
  25. }
  26. vector<string> reorderLogFiles(const vector<string>& logs) {
  27. vector<string> out;
  28. vector<string> num_list;
  29. for (auto &v : logs) {
  30. bool blank = false;
  31. for (auto c : v) {
  32. if (c == ' ') {
  33. blank = true;
  34. continue;
  35. }
  36. if (blank) {
  37. if (c >= '0' && c <= '9') {
  38. num_list.push_back(std::move(v));
  39. } else {
  40. out.push_back(std::move(v));
  41. }
  42. break;
  43. }
  44. }
  45. }
  46. // Sort out
  47. std::sort(out.begin(), out.end(), [](const std::string& l, const std::string &r) -> bool {
  48. std::size_t i = l.find(' ');
  49. std::size_t j = r.find(' ');
  50. int result = strcmp(l.c_str() + i + 1, r.c_str() + j + 1);
  51. if (result != 0) {
  52. return result < 0;
  53. }
  54. return strcmp(l.c_str(), r.c_str()) < 0;
  55. });
  56. // Push number list
  57. for (auto &num : num_list) {
  58. out.push_back(std::move(num));
  59. }
  60. return out;
  61. }
  62. };
共 0 条回复
暂时没有人回复哦,赶紧抢沙发
发表新回复

作者

sryan
today is a good day