• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

luby transformation

 
Ranch Hand
Posts: 100
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can any body please help me to implement luby transformation code using java?
 
Ranch Hand
Posts: 774
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Vinay,

It is a certification forum. Post your question in Java Beginner or advance. Here we only
answer SCJP related stuff. Please check for faq's how to choose an appropriate forum.

Best Regards,
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do you have the algorithm for that? If not, find a source for it. If yes, what concrete issues are you encountering?
 
vijay umar
Ranch Hand
Posts: 100
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the algorithm is:

1.We have to select a word like: "hello"
2.convert this string into binary form.like "hello" binary form will be 10011100 10010101 10011100 10001010 10101001
3.take each binary form as m1,m2,m3,m4 and then perform XOR operation between them,like m1 xor m2 ,m2 xor m3, m3 xor m1,m1 xor m2 xor m3.
3.then print the result.

i have apiece of code here but using it i cud only convert a word into binary but not able to perform XOR operation. please Ulf help me!

 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you familiar with the XOR operator in Java? It's "^", and searching for "bitwise logical operators java" should find more info about it.
 
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You're asking the same question here.
 
reply
    Bookmark Topic Watch Topic
  • New Topic