Quick Search


Tibetan singing bowl music,sound healing, remove negative energy.

528hz solfreggio music -  Attract Wealth and Abundance, Manifest Money and Increase Luck



 
Your forum announcement here!

  Free Advertising Forums | Free Advertising Board | Post Free Ads Forum | Free Advertising Forums Directory | Best Free Advertising Methods | Advertising Forums > Post Your Free Ads Here in English for Advertising .Adult and gambling websites NOT accepted. > Other

Other Post anything that does not fit in the above categories here.

Reply
 
Thread Tools Display Modes
Old 06-18-2011, 07:44 PM   #1
kiter865
 
Posts: n/a
Default return insert

10. what are the various ways to put into action a condition wherever the
appeal of x may be possibly a 0 or even a 1. apparently the if then else
remedy features a leap when composed out in assembly. if (x == 0) y=a else y=b there exists a logical, arithmetic plus a info structure solution to the over issue.
11. reverse a linked listing.
12. insert in a very sorted listing
thirteen. inside a x's and 0's sport (i.e. tic tac toe) in case you create a plan for this give a quick strategy to generate the moves from the laptop or computer. i suggest this ought to be the quickest way doable.
the remedy is always that you should store all achievable configurations of the board and the move that is connected with that. then it boils down to just accessing the proper element and getting the corresponding transfer for it. do some analysis and do some much more optimization in storage since otherwise it becomes infeasible to acquire the necessary storage in a very dos machine.
14. i used to be provided two lines of assembly code which found the absolute value of a amount stored in two's complement kind. i needed to recognize what the code was doing. pretty straightforward if you know some assembly and some fundaes on amount representation.
15. give a fast strategy to multiply a number by 7.
sixteen. how would go about discovering out in which to find a e-book in a very library. (you don't know how exactly the textbooks are organized beforehand).
17. connected listing manipulation.
18. tradeoff among time put in in testing a products and acquiring into your market place very first.
19. what to check for given that there isn't really enough time for you to examination every little thing you would like to.
twenty. very first some definitions for this dilemma: a) an ascii character is 1 byte lengthy along with the most considerable bit in the byte is always '0'. b) a kanji character is two bytes lengthy. the sole characteristic of the kanji character is always that in its initial byte essentially the most significant bit is '1'.
now you are provided an array of a characters (equally ascii and kanji) and, an index in to the array. the index factors on the start of some character. now you need to create a purpose to do a backspace (i.e. delete the character prior to the presented index).
21. delete an element from a doubly linked record.
22. write a perform to seek out the depth of the binary tree.
23. offered two strings s1 and s2. delete from s2 all people characters which arise in s1 also and lastly develop a thoroughly clean s2 together with the relevant characters deleted.
24. assuming that locks are the only cause because of to which deadlocks can happen in a program. what will be a foolproof strategy of keeping away from deadlocks from the system.
25. reverse a connected list.
ans: feasible answers -
iterative loop
curr->next = prev;
prev = curr;
curr = subsequent;
subsequent = curr->next
endloop
recursive reverse(ptr)
if (ptr->next == null)
return ptr;
temp = reverse(ptr->next);
temp->next = ptr;
return ptr;
finish
26. compose a tiny lexical analyzer - interviewer gave tokens. expressions like "a*b" and so forth.
27. in addition to communication expense, what exactly is the opposite supply of inefficiency in rpc? (remedy : context switches, excessive buffer copying). how can you optimize the communication? (ans : talk by means of shared memory on same machine, bypassing the kernel _ a univ. of wash. thesis)
28. create a schedule that prints out a 2-d array in spiral buy!
29. how could be the readers-writers problem solved? - making use of semaphores/ada .. etc.
thirty. ways of optimizing image table storage in compilers.
31. a walk-through through the image table features, lookup() implementation and many others. - the interviewer was around the microsoft c staff.
32. a version of the "there are 3 people x y z, one particular of which often lies".. etc..
33. you will find three ants at 3 corners of the triangle, they randomly begin moving in the direction of another corner.. what is the likelihood that they don't collide.
34. publish an effective algorithm and c code to shuffle a pack of cards.. this one particular was a feedback approach until we came up with one without any extra storage.
35. the if (x == 0) y = 0 and so forth..
36. some a lot more bitwise optimization at assembly stage
37. some standard questions on lex, yacc and so forth.
38. offered an array t[100] which contains numbers amongst 1..99. return the duplicated price. try each o(n) and o(n-square).
39. presented an array of characters. how would you reverse it. ? how would you reverse it devoid of making use of indexing in the array.
forty. given a sequence of characters. how will you convert the reduced circumstance characters to higher situation characters. ( try employing bit vector - options presented in the c lib -typec.h)
41. fundamentals of rpc.
42. provided a linked list that is sorted. how will u insert in sorted way.
43. presented a linked list how will you reverse it.
44. give a good information construction for possessing n queues ( n not fixed) in a finite memory segment. it is possible to have some data-structure separate for each queue. check out to use a minimum of 90% of the memory room.
45. do a breadth initial traversal of the tree.
46. publish code for reversing a connected checklist.
47. compose, productive code for extracting exclusive elements from a sorted checklist of array. e.g. (1,windows 7 Professional, 1, 3, 3, 3, 5, 5, 5, 9, nine, nine,Windows 7 Ultimate Product Key, nine) -> (one, 3, 5, nine).
48. offered an array of integers,Windows 7 Professional Product Key, uncover the contiguous sub-array together with the greatest sum.
ans. might be done in o(n) time and o(1) extra room. scan array from one to n. don't forget the very best sub-array observed to date and also the best sub-array ending in i.
49. given an array of length n that contains integers between one and n, determine if it is made up of any duplicates.
ans. [is there an o(n) time answer that utilizes only o(1) extra space and does not destroy the original array?]
fifty. sort an array of size n containing integers amongst one and k, given a momentary scratch integer array of dimension k.
ans. compute cumulative counts of integers within the auxiliary array. now scan the original array,Microsoft Office Professional 2010 Key, rotating cycles! [can a person phrase this far more nicely?]
* 51. an array of size k includes integers in between one and n. you might be presented an extra scratch array of dimension n. compress the original array by removing duplicates in it. what if k << n?
ans. might be done in o(k) time i.e. devoid of initializing the auxiliary array!
52. an array of integers. the sum from the array is known not to overflow an integer. compute the sum. what if we know that integers are in 2's complement kind?
ans. if numbers are in 2's complement, an normal searching loop like for(i=total=0;i< n;total+=array[i++]); will do. no need to check for overflows!
53. an array of characters. reverse the order of phrases in it.
ans. compose a routine to reverse a character array. now get in touch with it for your provided array and for each word in it.
* 54. an array of integers of dimensions n. generate a random permutation of the array, provided a perform rand_n() that returns an integer in between one and n, both inclusive, with equivalent probability. what is the expected time of your algorithm?
ans. "expected time" really should ring a bell. to compute a random permutation, make use of the standard algorithm of scanning array from n downto one, swapping i-th factor with a uniformly random factor <= i-th. to compute a uniformly random integer between 1 and k (k < n), call rand_n() repeatedly until it returns a value in the desired range.
fifty five. an array of pointers to (very lengthy) strings. uncover pointers to the (lexicographically) smallest and most significant strings.
ans. scan array in pairs. bear in mind largest-so-far and smallest-so-far. examine the bigger of the two strings from the current pair with largest-so-far to update it. along with the smaller sized from the existing pair together with the smallest-so-far to update it. for a complete of <= 3n/2 strcmp() calls. that's also the lower bound.
56. compose a plan to remove duplicates from a sorted array.
ans. int remove_duplicates(int * p, int dimensions)
{
int current, insert = 1;
for (current=1; current < size; current++)
if (p[current] ,Office Professional Plus 2007 Product Key!= p[insert-1])

p[insert] = p[current];
current++;
insert++;
else
current++;
return insert;
}
  Reply With Quote

Sponsored Links
Old 06-18-2011, 09:47 PM   #2
qrst405
Commander In Chief
 
Join Date: Mar 2011
Posts: 2,228
qrst405 is on a distinguished road
Unhappy travel

travel to cogitate runescape gold of sequestered the sons the cheapest wow gold enumerate is by all means not a maple story mesos few and ingest this galore wow gold sell group over a stretch phase of gold in wow indication, not an gradual of affair."
qrst405 is offline   Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is On


All times are GMT. The time now is 08:28 AM.

 

Powered by vBulletin Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Free Advertising Forums | Free Advertising Message Boards | Post Free Ads Forum