while I am doing my project I got this error while finding word in tries Dsa
public List auto_complition(string word)
{
var item = find_word(word);
if (item != null)
{
return auto_complition(item, word, new List());
}
return new List { word };
}
private List auto_complition(Node item, string word, List words)
{
foreach (var items in item.getchildren())
{
}
return new List { word };
}
public Node find_word(string ch)
{
if (ch == null)
{
return null!;
}
return find_word(root, ch, 0);
}
private Node find_word(Node root, string ch, int index)
{
foreach (var item in root.getchildren())
{
if (item.value == ch[index] && index != ch.Length - 1)
{
if (index == ch.Length && item.isendofword)
{
return item;
}
find_word(item, ch, index + 1);
}
}
return null!;
}
это моя ошибка!
Код серьезности Описание Состояние подавления строки файла проекта
Ошибка (активная) CS0050 Несовместимая доступность: тип возвращаемого значения ' Tries.Node» менее доступен, чем метод «Tries.find_word(string)» ConsoleApp1 D:\folder1\ConsoleApp1\Tries.cs 167
[code]while I am doing my project I got this error while finding word in tries Dsa
public List auto_complition(string word) { var item = find_word(word); if (item != null) { return auto_complition(item, word, new List()); } return new List { word }; } private List auto_complition(Node item, string word, List words) { foreach (var items in item.getchildren()) {
} return new List { word }; } public Node find_word(string ch) { if (ch == null) { return null!; } return find_word(root, ch, 0); } private Node find_word(Node root, string ch, int index) { foreach (var item in root.getchildren()) { if (item.value == ch[index] && index != ch.Length - 1) { if (index == ch.Length && item.isendofword) { return item; } find_word(item, ch, index + 1); } } return null!; } [/code] это моя ошибка! Код серьезности Описание Состояние подавления строки файла проекта Ошибка (активная) CS0050 Несовместимая доступность: тип возвращаемого значения ' Tries.Node» менее доступен, чем метод «Tries.find_word(string)» ConsoleApp1 D:\folder1\ConsoleApp1\Tries.cs 167
Я пытаюсь найти слово в попытках:
public List auto_complition(string word)
{
var item = find_word(word);
if (item != null)
{
return auto_complition(item, word, new List());
}
return new List { word };
}
private List auto_complition(Node item,...
Я работаю с ASP.Net уже около 3 месяцев и сегодня хотел взглянуть на потоки SignalR. Локально все работает нормально, но как только я создаю его через Github Actions с Docker и разворачиваю на своем сервере Ubuntu (Docker и Portainer больше ничего...
Предположим, разрабатывается приложение, которое должно работать в Windows и Linux, и приложение использует пакет pyserial, который предоставляет тип Serial.serialposix.Serial при установке в Linux и тип Serial.serialwin32.Serial при установке в...
Предположим, разрабатывается приложение, которое должно работать в Windows и Linux, и приложение использует пакет pyserial, который предоставляет тип Serial.serialposix.Serial при установке в Linux и тип Serial.serialwin32.Serial при установке в...
Привет, я пытался решить эту проблему, которую мне дал автор модели, хотя я ничего не знаю о кодировании Unity. Не могли бы вы помочь мне справиться с этим? Говорит, что метод ClipsSwapAreaElement должен иметь возвращаемый тип, и не знаю, есть ли...