Tech24 Deals Web Search

Search results

  1. Results from the Tech24 Deals Content Network
  2. python - morse code to english python3 - Stack Overflow

    stackoverflow.com/questions/32094525

    I know this is an old question but in the tradition of open source I wrote code to implement the fact that Morse is a binary tree and this may be faster than using a dictionary: class node: def __init__(self, char): self.dot = None. self.dash = None. self.alpha = char. def __str__(self): return self.alpha. def nextNode(self, basenode, char):

  3. C++ Morse to english - Stack Overflow

    stackoverflow.com/questions/59013166

    So far I have done the English text to morse code and I am currently stuck on morse code to english text. I tried doing the same thing as the English to morse but I learned the hard way that it doesn't help, and I dont know where to start. I have been stuck like this for a long time, any advice on how to do this would be greatly appreciated please.

  4. java - Morse code translator (simple) - Stack Overflow

    stackoverflow.com/questions/29706653

    Once found use the same index from english in morse. I am assuming english and morse have same length and morse[0] is the translation of english[0] in morse code. userInput = userInput.toCharArray(); for (index = 0; index < userInput.length; index++) {. for (int i = 0; i < english.length; i++) {.

  5. What you are doing here is you are not splitting the code into letters using " " as the separator. Try this, string convertToEnglish(string morse, string const morseCode[], string const alpha[]) {. string output; string compile; string currentCodeLetter; int totalMorseCode=38; string str = morse;

  6. encoder - Morse Code Converter in C - Stack Overflow

    stackoverflow.com/questions/28045172

    You'll need to start with the binary tree parsed in preorder, find the index of the letter you want to encode to morse, convert that to binary, ignore the first digit, and then just assign the zeros to dots, and the ones to dashes. It's really simple. A C implementation example. Also there is a full code example here.

  7. The English to morse code part works fine, But the Morse code to English doesn't...I keep getting E's and T's , Is there a way to make so that if there's a space in between the Morse code letters it would know theyre different letters instead of having every "." = E and every "-" =T

  8. javascript - js decoding morse code - Stack Overflow

    stackoverflow.com/questions/43726344

    Another solution that based on 2 loops. The seperation of words in the morse code made by split(" ") - (with 3 separation signs) - which splits the morse code into words when it recognize 3 seperation signs. Now you have an array of x strings.

  9. I'm trying to do a morse code-English both ways translator import java.util.Scanner; public class ...

  10. while (j != -1) {. //determines the end of a letter in Morse code and stores the. morseLetter = morseLine.substring(i, j); found = false; k = 0; theLetter = " "; //this loop searches the array of morseCode for the equal Morse code letter. //then it assigns the corresponding letter that is equivalent.

  11. ch=azarray+a; return ch; } the function keyread is supposed to split the morse string into 4 chars and pass that to the morse2english function which is supposed to find the alphabetical representation of the morse code and return it to the keyread function and add it to string4. c. pointers. loops.