Tagged Questions
The bottomup tag has no wiki summary.
6
votes
1answer
395 views
Grammar: difference between a top down and bottom up? (Example)
This is a follow up question from Grammar: difference between a top down and bottom up?
I understand from that question that:
the grammar itself isn't top-down or bottom-up, the parser is
there ...
4
votes
2answers
485 views
Grammar: difference between a top down and bottom up?
What is the difference between a top down and bottom up grammar? An example would be awesome.
1
vote
1answer
225 views
Bottoms-up mergesort problems!
I am having problems with bottoms-up mergesort. I have problems sorting/merging. Current code includes:
public void mergeSort(long[] a, int len) {
long[] temp = new long[a.length];
...
1
vote
4answers
2k views
opengl topdown<->bottomup textures?
When i load an image via FreeImage, the bits are bottom to top.
My GL code expects all images to be topdown. Whats the best way to flip the image when i copy the bits to the texture?
0
votes
0answers
52 views
LR parser or recursive ascent parser
As an example, for a simple context free grammar like,
S -> 12A
A -> 4 or 5A
How should LR (recursive ascent not table based) parser be implemented for it. Sample code in C or any language would be ...
0
votes
1answer
610 views
Top Down Vs Bottom Up - Normalisation
Could someone describe for me the differences between top down normalisation and bottom up normalisation with regards to databases, namely relational databases.
0
votes
0answers
49 views
how javabean data types mapped with wsdl Schema
When we create a webservice in Eclipse using JAX-RPC where return type of implementation class is javabean .Please let me know how javabean data types mapped with wsdl Schema
Thanks in Advance
Remya
...
0
votes
1answer
173 views
Knapsack 0-1 path reconstruction (which items to take)
I know how to solve knapsack 0-1 problem with dynamic programming approach, but I am having troubles figuring out which items to take without compromising the complexity of O(N * C) (N items, C ...
0
votes
1answer
522 views
Can some one please provide the practical examples of stubs and drivers?
I need some practical examples of stubs and drivers with respect to top-down and bottom-up approaches to testing. I don't require code here. Just the scenario based examples.