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 dencom 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: *

  • Users: DonFredi
  • Content: Threads
  • Order by date
  1. DonFredi

    need with arrays

    Hi all! I am trying to implement the Boyer Moore Horspool algorithm and having trouble with the following function: void shiftTable(char* pat, int num){ int i; num= strlen(pat); for(i=0;i<10;i++) table[i]=num; for(int j=0; j<pNum; j++) table[pat[j]]=num-(1+j);// int table[10] } what I...

Part and Inventory Search

Back
Top