in

Daily Jahy-sama meme: day 449 ✓

Daily Jahy-sama meme: day 449 ✓

6 Comments Leave a Reply
  1. I’m pretty sure it’s something like this:

    char string[12] = “the internet”;
    do
    {
    int c = strcmp(string, tree->value);
    if (c == 0)
    break;
    if (c < 0)
    {
    tree = tree->left;
    continue;
    }
    if (c > 0)
    {
    tree = tree->right;
    continue;
    }
    } while(1);

Leave a Reply
Avatar for Mr_Glove_EXE

Your email address will not be published.