fork download
  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std;
  4.  
  5. const int MAX_SIZE = 2000;
  6. const int LAST_LETTER = 'z';
  7.  
  8. bool isLetter(char c) {
  9. return ('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z');
  10. }
  11.  
  12. void addWords(char words[][MAX_SIZE + 1], char text[], int &lastPos) {
  13. int length = strlen(text);
  14. bool wasLetter = false;
  15. for (int i = 0; i <= length; ++i) {
  16. if (isLetter(text[i])) {
  17. char c[] = {text[i], 0};
  18. wasLetter = true;
  19. strcat(words[lastPos], c);
  20. } else if (wasLetter) {
  21. ++lastPos;
  22. wasLetter = false;
  23. }
  24. }
  25. }
  26.  
  27. void interchangeSeq(char firstWord[], char secondWord[]) {
  28. char aux[MAX_SIZE + 1];
  29. strcpy(aux, firstWord);
  30. strcpy(firstWord, secondWord);
  31. strcpy(secondWord, aux);
  32. }
  33.  
  34. void sortWords(char words[][MAX_SIZE + 1]) {
  35. for (int i = 0; words[i][0]; ++i) {
  36. for (int j = i + 1; words[j][0]; ++j) {
  37. if (strcmp(words[i], words[j]) > 0) {
  38. interchangeSeq(words[i], words[j]);
  39. }
  40. }
  41. }
  42. }
  43.  
  44. char* greatestWord(char words[][MAX_SIZE + 1]) {
  45. for (int i = 0; words[i][0]; ++i) {
  46. int fr[LAST_LETTER + 1] = {0};
  47. int n = strlen(words[i]);
  48. for (int j = 0; j <= n; ++j) {
  49. ++fr[words[i][j]];
  50. if (fr[words[i][j]] > 1) {
  51. break;
  52. } else if (words[i][j] == 0) {
  53. return words[i];
  54. }
  55. }
  56. }
  57. char text[] = "Ist nicht vorhanden!";
  58. char* ptr = text;
  59. return ptr;
  60. }
  61.  
  62. int main() {
  63. char text[MAX_SIZE + 1], words[MAX_SIZE + 1][MAX_SIZE + 1] = {0};
  64. int lastPos = 0;
  65. while (cin.getline(text, MAX_SIZE + 1)) {
  66. addWords(words, text, lastPos);
  67. }
  68. sortWords(words);
  69. cout << greatestWord(words);
  70. return 0;
  71. }
Success #stdin #stdout 0.01s 7412KB
stdin
Aabcadefg…abcd
!xyzd!!! xyxzd
stdout
abcd