A greatestDistanceBetweenWords() fn nem működik helyesen, javítani kell

This commit is contained in:
Digi 2025-02-27 06:47:57 +01:00
parent 2d3a3b5498
commit 4370f4cd05
14 changed files with 97 additions and 4 deletions

View File

@ -147,6 +147,88 @@ public static class Szoveg{
{
return wordsWithUniqeCharactersOnly.OrderByDescending(s => s.Length).First();
}
public static int GreatestDistanceBetweenWords(string input)
{
int maxDistance = 0;
int? firstIndex = null;
int firstEndIndex = 0;
int? secondIndex = null;
int secondStartIndex = 0;
int secondEndIndex = 0;
for (int i = 1; i < input.Length - 2; i++)
{
// új névelő megtalálva
if (input[i] == 'A' && input[i - 1] == ' ' && input[i + 1] == ' ')
{
if (firstIndex == null)
{
firstIndex = i;
firstEndIndex = i;
continue;
}
if (secondIndex == null && firstIndex != null)
{
secondIndex = i;
secondStartIndex = i;
secondEndIndex = i;
}
// kettő közötti távolság
int distance = Convert.ToInt32(secondStartIndex - firstEndIndex - 1);
if (distance > maxDistance)
{
maxDistance = distance;
}
firstIndex = secondIndex;
firstEndIndex = secondEndIndex;
secondIndex = i;
secondStartIndex = i;
secondEndIndex = i;
continue;
}
if (input [i] == 'A' && input[i + 1] == 'Z' && input[i - 1] == ' ' && input[i + 2] == ' '){
if (firstIndex == null)
{
firstIndex = i;
firstEndIndex = i + 1;
continue;
}
if (secondIndex == null && firstIndex != null)
{
secondIndex = i;
secondStartIndex = i;
secondEndIndex = i + 1;
}
// kettő közötti távolság
int distance = Convert.ToInt32(secondStartIndex - firstEndIndex - 1);
if (distance > maxDistance)
{
maxDistance = distance;
}
firstIndex = secondIndex;
firstEndIndex = secondEndIndex;
secondIndex = i;
secondStartIndex = i;
secondEndIndex = i + 1;
}
}
return maxDistance;
}
}
public class Program
@ -178,11 +260,20 @@ public static class Szoveg{
// feladat 2 a
Szoveg.ReadDataFromFile(@"..\szoveg.txt");
Szoveg.ReadDataFromFile(@"..\testinput.txt");
/*
Szoveg.wordsWithUniqeCharactersOnly = Szoveg.WordsWithUniqeCharactersOnly();
System.Console.WriteLine($"{Szoveg.LongestStringWithUniqueCharacters()}");
*/
// feladat 2 b
string fullTextInSingleString = string.Join(" ", Szoveg.fullTextInListOfString);
int value = Szoveg.GreatestDistanceBetweenWords(fullTextInSingleString);
System.Console.WriteLine($"{value}");
}
}

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Program")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2d3a3b5498848de0502de226cf3680344b851fa3")]
[assembly: System.Reflection.AssemblyProductAttribute("Program")]
[assembly: System.Reflection.AssemblyTitleAttribute("Program")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
17a31eb238f6f175e91f757bce7478ca3439291fdf71caa540b0d35a4a757b14
5f0e7be5aed498aebc515a122ed65f513d902cc336ac583393b795272d573e2f

View File

@ -8,7 +8,7 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Program
build_property.ProjectDir = E:\Házi\13.osztály\Neumann_Verseny\fordulo_1\Program\
build_property.ProjectDir = e:\Házi\13.osztály\Neumann_Verseny\fordulo_1\Program\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0

2
fordulo_1/testinput.txt Normal file
View File

@ -0,0 +1,2 @@
HOL TEREM A M A GYAR VITEZ
AZ PATAKBAN KET GYERMEK FURDIK