Search:

Type: Posts; User: adohertyd

Search: Search took 0.00 seconds.

  1. Replies
    17
    Views
    3,304

    For what it's worth I haven't used the code that...

    For what it's worth I haven't used the code that was posted at all. It helped me however to understand what code was required for the task. In my program I don't have to give any suggestions for...
  2. Replies
    8
    Views
    6,685

    No I'm not submitting this. I just wanted to see...

    No I'm not submitting this. I just wanted to see something like that in operation is all thanks very much
  3. Replies
    8
    Views
    6,685

    That's perfect Tater thank you very much

    That's perfect Tater thank you very much
  4. Replies
    8
    Views
    6,685

    I don't want to use a preset encryption algorithm...

    I don't want to use a preset encryption algorithm though, I would like to write my own basic one that stands alone. Even by adding 5 letters to the original letter then multiplying it's position by 2...
  5. Replies
    8
    Views
    6,685

    Encryption/Decryption Program

    I am trying to build an encryption/decryption program for fun. I know it won't be strong, I know people would crack it in seconds but I don't care. This is just to get to grips with it. I have code...
  6. Replies
    17
    Views
    3,304

    Thanks Adak I see exactly what's happening now....

    Thanks Adak I see exactly what's happening now. And I suppose a word checker is the right word for my problem rather than a spellchecker. I got bogged down in a lot of stuff and this has cleared it...
  7. Replies
    17
    Views
    3,304

    Thanks Adak you have been a great help but I'm...

    Thanks Adak you have been a great help but I'm still none the wiser if I'm honest. Basic string searching etc is fine for me but this stuff is just over my head. I think my original slow code will...
  8. Replies
    17
    Views
    3,304

    My opinion was that I read the dictionary file...

    My opinion was that I read the dictionary file into memory as I have done(I amended the float to long int). Repeat process for user file. Dictionary is already sorted alphabetically so no need to do...
  9. Replies
    17
    Views
    3,304

    Thanks Adak, Ok I have managed to read my...

    Thanks Adak,

    Ok I have managed to read my dictionary file into memory using a function. Here's the code:


    void readfile(char *dictionary) //Reads the dictionary file into memory for optimized...
  10. Replies
    17
    Views
    3,304

    Thanks guys. Tater I found that post before but I...

    Thanks guys. Tater I found that post before but I don't really understand it. Binary searches, binary trees... I've only been programming for a few weeks so I'm quite lost with this. Would you guys...
  11. Replies
    17
    Views
    3,304

    Spellchecker refinement needed

    I am writing a spellchecker program and have some issues. First thing is that I need to make better use of the memory. My code iterates through a large dictionary file repeatedly. I know its better...
  12. Replies
    4
    Views
    1,738

    Thanks for that but I'm not sure what you mean? ...

    Thanks for that but I'm not sure what you mean?

    I placed the notfound=1 as a variable at the top and set it to equal 0 if the word was found but I need the program to output wrong words to the...
  13. Replies
    4
    Views
    1,738

    Problem with if statement

    I am running an if-else statement to output an error when a word can't be found in a dictionary file. The program reads word 1 from the user text file and then loops through a dictionary file to find...
Results 1 to 13 of 13