[Show all top banners]

The Joker
Replies to this thread:

More by The Joker
What people are reading
Subscribers
:: Subscribe
Back to: Computer/IT Refresh page to view new replies
 Coding Challenge!!! C++
[VIEWED 7066 TIMES]
SAVE! for ease of future access.
Posted on 02-06-15 1:28 PM     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 


coding challenge for all the pros

use a circular array to create a circular representation for the n-bit number. The cyclic shift operations will change where the first bit starts in the number. The cyclic shift left shifts every bit to the left by one position and the leftmost bit moves cyclically to the vacated rightmost position. Similarly, the cyclic shift right shifts every bit to the right by one position and the rightmost bit moves cyclically to the vacated leftmost position.
example: input (1 1 1 1 0 0 0 0)
output (1 1 1 0 0 0 0 1 )
 
Posted on 07-18-15 6:44 PM     [Snapshot: 387]     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

Hey there, don't post your assignment here, do it yourself.
 
Posted on 07-19-15 4:37 AM     [Snapshot: 472]     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

You would have get better help if you have stated "help" instead of challenge.
 
Posted on 07-19-15 4:48 AM     [Snapshot: 476]     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

Try stackoverflow.com
 
Posted on 07-19-15 1:28 PM     [Snapshot: 594]     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

here is java version but other way around..
output (1111000) 
next iteration: 0111100
next iteration:0011110 and so on

import java.util.Scanner;

/**
*
* @author wiwi
*/
public class JavaApplication15 {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here

System.out.println("Please enter your no");
Scanner myScanner = new Scanner(System.in);
int number = myScanner.nextInt();
String numberString = "";
numberString = Integer.toString(number);
int sizeOFstring = numberString.length();
char[] myArray = new char[sizeOFstring];
char[] tempArray = new char[sizeOFstring];
for (int i = 0; i < sizeOFstring; i++) {

myArray[i] = numberString.charAt(i);
tempArray[i] = numberString.charAt(i);
}

String choice = " ";
int n = 0;
while (n == 0) {
//System.out.println("size of array" + myArray);
System.out.println("Please press ('N') or ('n') to start cycle");
System.out.println("Please press any key to quit");
choice = myScanner.next();

if ((choice.equals("N")) || (choice.equals("n"))) {

int j = 0;
myArray[0] = tempArray[sizeOFstring - 1];

for (int i = 1; i < sizeOFstring; i++) {
myArray[i] = tempArray[j];
j++;

}
for (int i = 0; i < sizeOFstring; i++) {
tempArray[i] = myArray[i];
j++;

}

for (int i = 0; i < sizeOFstring; i++) {
System.out.print(tempArray[i]);
}
System.out.println();
} else {
System.out.println("Thank you");
n = 1;
}

}

}
}
Last edited: 19-Jul-15 01:30 PM

 
Posted on 07-19-15 1:41 PM     [Snapshot: 650]     Reply [Subscribe]
Login in to Rate this Post:     0       ?    
 

kasto khatey magney ho yar..help chaiye ta help bhanda k ko laaj...thukka ni...teri soch ra jindagi.
 


Please Log in! to be able to reply! If you don't have a login, please register here.

YOU CAN ALSO



IN ORDER TO POST!




Within last 200 days
Recommended Popular Threads Controvertial Threads
TPS Re-registration
What are your first memories of when Nepal Television Began?
निगुरो थाहा छ ??
ChatSansar.com Naya Nepal Chat
Basnet or Basnyat ??
Sajha has turned into MAGATs nest
NRN card pros and cons?
Do nepalese really need TPS?
कता जादै छ नेपाली समाज ??
susta manasthiti lai ke bhanchan english ma?
Will MAGA really start shooting people?
Democrats are so sure Trump will win
is Rato Bangala school cheating?
मन भित्र को पत्रै पत्र!
Top 10 Anti-vaxxers Who Got Owned by COVID
I regret not marrying a girl at least for green card. do you think TPS will remain for a long time?
काेराेना सङ्क्रमणबाट बच्न Immunity बढाउन के के खाने ?How to increase immunity against COVID - 19?
TPS Work Permit/How long your took?
Breathe in. Breathe out.
3 most corrupt politicians in the world
Nas and The Bokas: Coming to a Night Club near you
Mr. Dipak Gyawali-ji Talk is Cheap. US sends $ 200 million to Nepal every year.
Harvard Nepali Students Association Blame Israel for hamas terrorist attacks
TPS Update : Jajarkot earthquake
is Rato Bangala school cheating?
NOTE: The opinions here represent the opinions of the individual posters, and not of Sajha.com. It is not possible for sajha.com to monitor all the postings, since sajha.com merely seeks to provide a cyber location for discussing ideas and concerns related to Nepal and the Nepalis. Please send an email to admin@sajha.com using a valid email address if you want any posting to be considered for deletion. Your request will be handled on a one to one basis. Sajha.com is a service please don't abuse it. - Thanks.

Sajha.com Privacy Policy

Like us in Facebook!

↑ Back to Top
free counters