Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. SerJel

    letter frequency count

    Ok, i have sorted the letters by frequency, but how can i to do that the most bigger is "e", and to put that "e" into text? #!/usr/bin/awk -f function swapa(arr,i,j, tmp) { tmp=arr[i]; arr[i]=arr[j]; arr[j]=tmp; } function _qsort(arr,keys,i,j, k,i2,j2) { if(j-i<1) return...
  2. SerJel

    letter frequency count

    How i undesrtand i need to sort letter[ind[i]] and the most bigger will be "e". But how to do that?
  3. SerJel

    letter frequency count

    VERY needed!!!
  4. SerJel

    letter frequency count

    How i can now to decrypt some decrypted text uses letter frequency tables?
  5. SerJel

    letter frequency count

    thank you! it works :)
  6. SerJel

    letter frequency count

    Ez, can anyboby help me to write a code in AWk, which will count the letter frequency in text. My code: #!/usr/bin/awk -f { for (i = 1; i <= NF; i++) freq[$i]++ } END { for (words in freq) split(words,word,""); for (s in word) #if (word[s]=word[s])...

Part and Inventory Search

Back
Top