Pseudocode is a compact and informal high-level description of a computer programming algorithm. It represents the code and may look similar to the code or code constructs, but it isn't actual code. It is a representation of the code or code construct.
0
votes
1answer
17 views
CSharpCodeProvider does not see the Stack<T> class under System.Collections.Generic
I'm building a pseudocode translator and compiler.
It translates the pseudocode to code by performing several string operations, then it uses the CSharpCodeProvider class to compile it, and finally it ...
2
votes
2answers
40 views
Generating half of all permutations by never generating a permutation and its reverse?
I am looking for an algorithms that computes only half of the possible permutations. For example elements a b c have the following permutations:
a b c
a c b
b a c
b c a
c a b
c b a
When a ...
0
votes
2answers
55 views
Pseudocode Translation
I started working just a few hours ago on a pseudocode translator, which will translate a specific pseudocode, reguarding work with stacks and queues, to c/c++ executable code. The translator has ...
0
votes
0answers
27 views
wondering if I am doing this correctly
Design a program that generates the sum of numbers.
Given a number (user input) you need an application that will produce a sum of the numbers from 1 to that given number.
You must include an ...
-6
votes
3answers
56 views
how do I start this pseudocode
ok I am lost right now by this assignment and just need some help.
The assignment is Design a program that generates the sum of numbers.
Given a number (user input) you need an application that will ...
0
votes
1answer
38 views
How do I connect my player's changing hands and gameboard to an existing poker hand evaluator?
Although I'm not making a poker game, the objective of the game is the player with the highest poker hand wins. There are four players in my game. I was able to implement a gameboard and a function ...
1
vote
2answers
41 views
Binary tree inorder traversal Racket
I am trying to write the algorithm for inorder traversal for a binary tree using RACKET/DR. RACKET
(define (print-records node number)
(cond
[(not (empty? node-left))(print-records ...
0
votes
3answers
59 views
Printing a binary tree in Java [duplicate]
I'm trying to implement a Binary Tree, and for ease of debugging, I want to be able to print the tree so it actually looks like a tree. For example:
50
42 71
31 ...
0
votes
1answer
15 views
What's the correct code for this pseudocode
I'm not quite getting pseudocode FOR loop thing.
What would be the correct code (in any language) for this pseudocode?
function myFunction(arr[])
for i = 0 to length(arr)
if (arr[i] ...
0
votes
1answer
52 views
Trouble with threads in a function to exec another function after X time
I am trying to create this function in order to exec another function after X time:
void execAfter(double time, void *(*func)(void *), t_params *params);
I have made an Thread ...
1
vote
1answer
55 views
How can I find the highest poker hand from a 9 card hand between 4 players?
I've tried to look through several sources online and they all deal with 5 card and 7 card hands. Also, I'm not really looking for the code, I'll try to do that on my own (although perhaps if you're ...
1
vote
2answers
34 views
Accessing a variable field within a node
Hi I am new to Racket using it for a binary tree structure.
Using the following structure
(define-struct human(age hight))
I have created the following object/variable/human
(define ...
0
votes
1answer
31 views
How to present Users Option in Algorithm or Pseudo Code
I have a software that asks user to choose different options from 3 sets of parameters before running the program with those inputs. However, I don't know how to show that in an algorithm or a Pseudo ...
-6
votes
0answers
44 views
What am I doing wrong here? [closed]
I have difficulty in doing the function checkPrice and saveProduct. What do I need to add or what should I do? I have the pseudocode however I can't seem to get it into python code.
function ...
0
votes
0answers
14 views
What's a Bayes Net Good for in code
I have been show a lot of diagrams, and seen a lot of equations, to explane what a bayes net is, and none of it has stuck for me. I'm told it's a "compact representation of Joint Probability ...
0
votes
2answers
108 views
Finding all combinations, pseudo [solved]
I have 10 rows, each row can have 1-10 numbers with a value of 1-100 (the actual value doesn't really matter). As an example, the first three rows will look like:
1. (2 numbers) ...
0
votes
3answers
64 views
Find first instance of a string within a string
I've got the following function that seems to work. This is in design code:
Method findFirst(word As String) As Integer
foundPosition As integer
Set foundPosition To -1
wordLen As integer
Set ...
0
votes
0answers
32 views
Convert sort code to pseudocode
Could someone help me convert this code to sort to pseudocode?
I'm not sure if I should write:
function fseek (arguments:stream name, number of bytes from, position)
or just:
move stream read ...
2
votes
1answer
39 views
Analysing a pseudocode [closed]
Algorithm 1. QUEUESTUFF(n)
Input: Integer n
1) Let Q = an empty Queue
2) For i = 1 to n
3) Q.Enqueue(i)
4) End For
5) For i = 1 to n-1
6) Let X = Q.Dequeue()
7) End For
8) Let X = Q.Dequeue()
Output: ...
0
votes
1answer
20 views
Examining a pseudo code
Algorithm 1. STACKSTUFF(n)
Input: Integer n
1) Let S = an empty Stack
2) Let X = -1
3) For i = 1 to 2n
4) S.Push(i)
5) End For
6) For i = 1 to n
7) Let X = S.Pop()
8) End For
Output: The contents of X
...
-2
votes
0answers
13 views
Looking for pseudo code(or any code) of adding O1(ones complement), T2(Two's complement), natural binary code
Exacly as in the subject, maybe some of you are in possesion of that kind of pseudo code of adding O1, T2 or NBC numbers. I know that people who really like to neg others will vote down, but I am in ...
2
votes
2answers
118 views
How do I write a recursive algorithm for permutations?
my question concerns a recursive way to output permutations given an input of integers.
Each of the integers represents a set of letters like a phone's keypad.
So the sets would look like:
1: {}
2: ...
-1
votes
3answers
211 views
Pseudocode example of quicksort using concurrency
I am a first year CS student at a University. My current assignment is about concurrency and the quicksort algorithm. As this is an assignment, I obviously wish to write the code myself to better ...
0
votes
3answers
109 views
Translate pseudo code into C++
I was given a pseudo code to translate into C++ :
Set a Boolean variable “first” to true.
While another value has been read successfully
If first is true
Set the minimum ...
-3
votes
0answers
45 views
how to write pseudo code for selenium automation testing?
how to write pseudo code for selenium automation testing?
I want some sample of selenium automation pseudo code...
I want to make pseudo code for one simple registration form
0
votes
1answer
67 views
Backtracking for listing k elements
Can someone give me a hand here. I am new to backtracking and preparing for an interview. I couldn't even attempt this question. Please help.
Describe a back tracking algorithm for efficiently ...
5
votes
2answers
122 views
File and directory structure of a r project
In common programming languages like java each file normally corresponds to a class.
I just started with R. I'd like to build a little program and I wanted to create a certain file and directory ...
2
votes
2answers
51 views
Test if two floats are zero without multiple tests
Is there a clever expression trick to test if a float vec3 is axial (i.e. two zero components) without using multiple equality tests?
At first I thought of if(abs(x)+abs(y)==0.0) (pseudocode)... but ...
1
vote
1answer
448 views
Dijkstra's algorithm pseudocode
I'm trying to write Dijkstra's algorithm in C++, and there are countless examples on the internet but I just can't seem to grasp how the examples work. I'd rather do it in a way that makes sense to me ...
1
vote
1answer
29 views
Going from pseudocode to scheme
key <-5381
for each character c in w do
key <-33.key + ctv(c)
end for
This is pseudocode for a key function that is to be implemented in scheme but for the life of me I cant figure out how to ...
2
votes
1answer
45 views
Checking next Line to then implement where the line should go to
I'm having trouble figuring out how to implement having a text file with lines having both lines of words and then lines of numbers. What I want to try and do is read the lines under the words then ...
0
votes
4answers
33 views
print second third of a linked list
There is a list of n nodes.
I have to write a pseudo code that prints the nodes of the second third of the list by using 3 pointers. what is the complexity?
if I could use by counter, it was easy, ...
0
votes
2answers
46 views
Recursion to Iteration conversion
Knowing that every recursive function can be translated to an iterative version. Can someone help me find the iterative version to this pseudo code? I am trying to optimize the code and recursion is ...
1
vote
1answer
76 views
Is There A Good Pseudo Code Editor? [duplicate]
I have to create some Pseudo Code but want it too "look good" and consistently formatted. Is there something where it will let me make if statements in Pseudo Code (I know it isn't a real language) so ...
0
votes
0answers
87 views
Express “Map, List, Set” data structure of Java into pseudocode [closed]
In my current research article, I have to document a pseudocode of my algorithm implemented in Java language. My implemented algorithm uses java specific data-structures such as Map (e.g., ...
0
votes
2answers
165 views
Convert Flowchart to Code (Javascript or PHP)
Are there any tools which will let me draw out a complex flowchart and then convert it to JavaScript or PHP?
I have a series of long, and very complicated flowcharts which may change over time. I ...
3
votes
2answers
69 views
Check which side of a plane points are on
I'm trying to take an array of 3D points and a plane and divide the points up into 2 arrays based on which side of the plane they are on. Before I get to heavily into debugging I wanted to post what ...
0
votes
2answers
253 views
Linked list implementation for a QUEUE [closed]
Here is my implementation for a queue using doubly linked list:
QUEUE-EMPTY
if L.head == NIL
return True
else return False
QUEUE(x):
if L.head == NIL:
x.prev = NIL
L.head = x
else
...
0
votes
2answers
296 views
Insert for linked list pseudo code
In Introduction to Algorithm Ed 3, I read pseudo code algo for inserting element in a linkedlist, and i do not understand the middle step.
x.prev = L.head
if L.head != NIL
L.head.prev = x
L.head ...
2
votes
2answers
147 views
Is this algorithm for finding a maximum independent set in a graph correct?
We have the following input for the algorithm:
A graph G with no cycles (aka a spanning-tree) where each node has an associated weight.
I want to find an independent set S such that:
No two ...
0
votes
1answer
94 views
Algorithm correctness
I'm studying loop invariants at the moment and I have trouble with my choiche for an invariant for a linear search algorithm.
Inpput: A[1 ... n] of integers, k an integer value
Output: true if k ...
5
votes
1answer
106 views
Calculate urgency of a task from two variables
I am trying to figure out a formula to calculate the urgency of a set of arbitrary tasks, based on the number of days until a 'deadline' and the % completion of the task already completed.
So far I ...
4
votes
2answers
98 views
Open/closed hand recognition: a simple method
I'm searching for a simple method to recognize if an hand is open or closed.
I'm using C# and EmguCV, but this is not significative in this context. I only need a "pseudo-code" that describes what I ...
0
votes
1answer
20 views
We have a set S of n potential investments
We have a set S of n potential investments, each given by a pair of floating point numbers (amount, estimated return) There is a total amount A to invest; we want to select investments to maximise the ...
0
votes
0answers
53 views
Does my pseudocode have any issues in it?
So the problem this time around deals with charge account validation. Basically, we have to design a program in pseudocode where a user enters an account number, and the program validates it by ...
0
votes
2answers
36 views
Manually Time Span
Given two inputs in date format that represents the start and the beggining of an event:
E.g.: 23:59 and 23:10
How to manually calculate the time span, i mean the duration of this event?
You could ...
0
votes
0answers
95 views
Pseudocode à la Scala
Are there any good examples of a Scala'ish style for writing pseudo-code which can be used to specify algorithms in an abstract way. E.g. leaving out implied or unnecessary types?
My idea is to ...
1
vote
2answers
101 views
Deleting in a heap, why does this implementation switch the values of the last element, not just replace it?
Problem 7 (6.5-7):
The operation Heap-Delete ( A; i) deletes the item in node i from heap A . Give an implementation of Heap-Delete that runs in O (lg n) time for an n -element max-heap
here's the ...
0
votes
1answer
43 views
How to program the validation for this inequality relationship?
This question follows from another question of mine regarding validation for inequality between four related numbers(namely min, max ,threshold1 and threshold2.). I would basically like to program for ...
-2
votes
1answer
50 views
Sequential Files
Okay, so I'm still learning the basics of programming. Still learning to use pseudocode. I have read, and practised to write pseudocode operations. I still get so confused, and when I ask questions to ...


