1
vote
4answers
36 views
math.sqrt vs. Newton-Raphson Method for finding roots in c#
Hi, I'm doing a homework project that requires this:
Below you will find the code that I have written to compute the square root of a number using the Newton-Raphson method. Inclu …
5
votes
2answers
107 views
Problem with piping commands in C
Hi,
I'm trying to create a simple shell in C for Unix. I've been able to do all the parsing of commands and execution, but I'm having a problem with piping. I think the problem is …
0
votes
4answers
153 views
Translate a FOR to assembler
Hi everyone,
I need to translate what is commented within the method, to assembler. I have a roughly idea, but can't.
Anyone can help me please? Is for an Intel x32 architecture: …
0
votes
6answers
78 views
Why is my Variable set to 0?
import java.lang.Math;
public class NewtonIteration {
public static void main(String[] args) {
System.out.print(rootNofX(2,9));
}
// computes x^n
public stat …
1
vote
5answers
127 views
Help with java coding?
Hi, ive been set an assignment for my java programming course and ive reached a point where i really cant work out the next step. Im wondering if anyone can help me with this code …
-3
votes
1answer
43 views
Create a recursive function to print a multidigit number vertically. [closed]
Possible Duplicate:
Create a recursive function to print integer numbers vertically.
using C language Create a recursive function to print a multidigit number vertically. …
-5
votes
6answers
85 views
Create a recursive function to print integer numbers vertically.
Create a recursive function to print a multidigit number vertically. For example, 2378 should be
printed
2
3
7
8
Test your program with numbers of different length.
0
votes
1answer
33 views
Proof for depth of balanced search tree
If T is a balanced BST with n elements, L its left subtree and R its right one, how can I prove that its depth is less than or equal to 2log(n) + 1?
There is a proof by induction …
-1
votes
5answers
112 views
Java Algo to Find smallest and second smallest Number in List
Hi,
I need to find smallest and second smallest number in a list.
Can I do this using single loop?
Also, we need to consider the case of two multiple occurences of a number.
Ex: …
0
votes
3answers
118 views
Recursion and permutations
Hi.
Let's say that we have two boxes of pencils (in first box just blue and in second just red pencils). So the question now is, in how many ways can we put x red and y blue penc …
0
votes
11answers
104 views
What is the difference between identity and equality in OOP?
What is the difference between identity and equality in OOP?
1
vote
9answers
120 views
what is an abstract data type in object oriented programming?
what is an abstract data type in object oriented programming? I gone through wiki.But i dint get cleared.Please make me clear
1
vote
3answers
74 views
Common Lisp: cons inside loop
I wonder why in the following code, d is not being consed into x.
Any hints are much appreciated.
(defun it (x)
(setq f '(a b c))
(dolist (d f)
(cons d x))
(print x))
…
0
votes
2answers
93 views
Rewriting this code cleaner using LINQ?
Here is a simplified version of the code I use:
class Program
{
// Here is the ugly stuff
static void DoStuff(int[] uidArray)
{
int chunkCount = (int)Math.Ceil …
0
votes
2answers
129 views
Algorithm to sort
Hi,
I have a list of numbers ex: list=[10,50,90,60]
I have this list to be sorted on the sum of any two elements. along with combination.
for ex: output list should contain 10+ …
