active questions tagged computer-science - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:18:52Z http://stackoverflow.com/feeds/tag/computer-science http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/644099/what-programming-languages-do-the-top-tier-universities-teach 40 What programming languages do the top tier Universities teach? Simucal 2009-03-13T18:51:07Z 2009-11-30T01:39:05Z <p>I'm constantly being inundated with articles and people talking about how most of today's Universities are nothing more than Java vocational schools churning out mediocre programmer after mediocre programmer.</p> <p>Our very own Joel Spolsky has his famous article, "<a href="http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html" rel="nofollow">The Perils of Java Schools</a>."</p> <p>Similarly, <a href="http://stackoverflow.com/users/48710/alan-kay">Alan Kay</a>, a famous Computer Scientist (and SO member) has said this in the past:</p> <blockquote> <p>"I fear — as far as I can tell — that most undergraduate degrees in computer science these days are basically Java vocational training." - Alan Kay (<a href="http://lambda-the-ultimate.org/node/531" rel="nofollow">link</a>)</p> </blockquote> <p>If the languages being taught by the schools are considered such a contributing factor to the quality of the school's program then I'm curious what languages <em>do</em> the "top-tier" computer science schools teach (MIT, Carnegie Mellon, Stanford, etc)? </p> <p>If the average school is performing so poorly due in large part the languages (or lack of) that they teach then what languages do the supposed "good" cs programs teach that differentiate them?</p> <p>If you can, provide the name of the school you attended, followed by a list of the languages they use throughout their coursework.</p> <p><hr /></p> <p>Edit: </p> <p>Shog-9 asks why I don't get this information directly from the schools websites themselves. I would, but many schools websites don't discuss the languages they use in their class descriptions. Quite a few will say, "using high-level languages we will...", without elaborating on which languages they use. </p> <p>So, we should be able to get a pretty accurate list of languages taught at various well known institutions from the various SO members who have attended at them.</p> http://stackoverflow.com/questions/1817072/building-a-game-need-a-language-with-strongly-supported-first-class-functions 5 Building a game, need a language with strongly supported first class functions Michael 2009-11-29T22:58:28Z 2009-11-30T00:29:52Z <p>I'm building an educational game which, through it's modularity, allows for teaching students how to program. It's essentially a generic card game which can easily be modified. </p> <p>The backbone of the game is supposed to be totally uneditable (at least in theory), so I need to build a "Card" type that allows for an anonymous function as it's action (even worse, or perhaps even more interesting, it needs an anonymous function that can have an arbitrary number of arguments).</p> <p>I also need a strong GUI library, and it needs to be portable, and if at all possible it should be potentially be a web language. It should have extensive support for modularity, be object oriented, and hopefully be clear enough that it doesn't require an experienced programmer to understand the syntax. That's a lot of requirements, but I'm supposed to be detailed and I want a specific answer and why it'd be a good choice, so I should put as much information as possible I think. I have no real need for efficiency of the language, so low level languages are not necessary in this case, very high level languages will easily be fast enough.</p> <p>Python isn't strong enough. Ruby may be but I'm not familiar enough with its features. Haskell and Scheme have the strongest support but aren't web languages and, so far as I know, don't have GUI libraries for the most part. C# may be reasonable, I'm not terribly familiar with its features, but I'm particularly worried about portability. If at all possible I'd like to avoid javascript, but if that really is the best option, I'll probably have to go in that direction. </p> http://stackoverflow.com/questions/1734960/which-are-unsolvable-problems-in-programming-world 4 Which are unsolvable problems in programming world? Ravi 2009-11-14T17:34:47Z 2009-11-29T20:53:33Z <p><a href="http://en.wikipedia.org/wiki/Travelling%5Fsalesman%5Fproblem" rel="nofollow">Travelling salesman problem</a> is said to be practically "unsolvable" when number of nodes increase.</p> <p>What other programming problems are considered unsolvable?</p> http://stackoverflow.com/questions/1815734/what-does-the-enterprise-ready-mean 1 What does the 'Enterprise Ready' mean? Simon 2009-11-29T15:00:03Z 2009-11-29T15:57:00Z <p>What do you mean by saying that something is 'Enterprise Ready'?</p> http://stackoverflow.com/questions/1812401/exactly-what-is-the-difference-between-a-closure-and-a-block 9 Exactly what is the difference between a "closure" and a "block"? cartoonfox 2009-11-28T12:18:38Z 2009-11-29T11:36:23Z <p>I've found that lots of people use the words <em>closure</em> and <em>block</em> interchangeably. Most of these people can't explain what they're talking about.</p> <p>Some Java programmers (even ones from really expensive consultancies) talk about anonymous inner classes as "blocks" and "closures" - but I know this isn't true. (You can't pass mutable variables in from the scope of the method in which they're defined...)</p> <p>I'm looking for:</p> <ul> <li>a precise, computer science <strong>definition of a block</strong></li> <li>a precise, computer science <strong>definition of a closure</strong></li> <li>and <strong>clarification on the difference</strong> between the two.</li> </ul> <p>I'd really like to see links, articles or book <strong>references on these please</strong>.</p> http://stackoverflow.com/questions/1809606/what-is-an-irrational-number-relevant-to-computer-science 1 What is an irrational number relevant to computer science? spitfire 2009-11-27T16:21:55Z 2009-11-28T15:01:02Z <p>For a project we're working on right now, we want to pull a Donald Knuth and have a version number that converged towards some irrational number. However, we don't want to use something boring like pi, e, sqrt(2), etc. Is there an irrational number that is particularly relevant to computer science that we could employ?</p> http://stackoverflow.com/questions/1604258/why-is-a-b-equivalent-to-a-a-b-b 12 Why is (a | b ) equivalent to a - (a & b) + b? CaptainAwesomePants 2009-10-21T23:43:40Z 2009-11-27T03:43:26Z <p>I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b).</p> <p>I tested it by hand a few times and verified it seems to work for all binary numbers I could think of, but I can't think out quick mathematical proof of why this is correct.<br /> Could somebody enlighten me?</p> http://stackoverflow.com/questions/1797810/a-phrase-as-catchy-as-feature-creep-but-for-underestimated-projects 2 A phrase as catchy as 'Feature Creep' but for underestimated projects Off Rhoden 2009-11-25T15:44:06Z 2009-11-25T17:09:01Z <p>I'm needing a term or established term to represent a phenomenon our company currently calls a 'Black Hole': a project that takes magnitudes longer than estimated, yet we're already sucked in and HAVE to see it through to completion.</p> <p>EDIT: Hoping that the best term will be voted up.</p> http://stackoverflow.com/questions/1797363/how-do-you-detect-outliers-on-multivariate-data 0 How do you detect outliers on multivariate data? unknown (yahoo) 2009-11-25T14:42:53Z 2009-11-25T16:31:42Z <p>I am trying to do a regression problem but I have 3 independent variables and not 1 so it is hard to detect outliers from a scatter graph. Any suggestions?</p> http://stackoverflow.com/questions/1778397/what-are-the-best-tags-to-follow-on-stackoverflow-for-computer-science-students 1 What are the best tags to follow on stackoverflow for computer science students? [closed] Navin 2009-11-22T10:46:18Z 2009-11-22T11:00:54Z <p>I believe that reading all the questions for a specific tag on stackoverflow is a great way to understand how that topic plays out in real life. Thus, if you're learning python from a book and/or online tutorials, you should also subscribe to the <a href="http://stackoverflow.com/feeds/tag/python">python tag on stackoverflow</a>.</p> <p>So the question I have is this: for computer science students who are still doing their undergraduate degree in computer science, what are the best tags to follow? I find that <a href="http://stackoverflow.com/feeds/tag/algorithm">"algorithm"</a> is great. It's largely language neutral, contains stuff that all computer science students must know, and in most cases does not bog them down with unnecessary details (unlike the python tag that often contains questions about language arcana).</p> <p>What other tags should a computer science student follow?</p> http://stackoverflow.com/questions/178141/unknown-significant-moments-of-computing-history 8 Unknown significant moments of computing history Unsliced 2008-10-07T12:04:57Z 2009-11-22T08:19:24Z <p>Computing as a discipline in its own right (rather than as a discussion of whether it is Mathematics or Physics) is a reasonably young science. Wherever you trace its roots (e.g. Turing's paper in 1936, Babbage's engines, ATLAS, ENIAC or LEO) it's much younger than most modern nation states. </p> <p>I've been programming (using the loosest definition) for close to 30 years but it still seems to me that I come across parts of its history that are new to me. While it shouldn't surprise me that while I studied computing at school, at University, post-grad and now as a day-job, that there is stuff I don't know, it still causes a small pause when I read an article about something which seems pivotal but about which I know absolutely nothing. </p> <p>For instance, <a href="http://www.theregister.co.uk/2008/10/07/software_engineering_birthday/" rel="nofollow">this news item</a> describes a conference which looks to have sown the seeds for many things that have come since. It was 1968, the world was young, IBM was old, Microsoft and Sun barely in glint in their creators' eyes; the notion of separating hardware and software was new, the largest institutions had networks that numbered in the dozens of machines. Yet some of their conclusions are fresh and remain unresolved, in particular managing large projects. (The <a href="http://www.europrog.ru/book/nato1968e.pdf" rel="nofollow">proceedings</a> are fascinating and full of lessons for the future software engineer.) </p> <p>The question is YASOP (*) - what piece of computing history do you think still has significance to our current industry but you feel people don't know enough about? </p> <p>(*) Yet Another Stack Overflow Poll </p> http://stackoverflow.com/questions/1250994/parsing-dice-expressions-e-g-3d65-in-c-where-to-start 3 Parsing dice expressions (e.g. 3d6+5) in C#: where to start? Domenic 2009-08-09T09:12:51Z 2009-11-21T16:15:55Z <p>So I want to be able to parse, and evaluate, "dice expressions" in C#. A dice expression is defined like so:</p> <pre><code>&lt;expr&gt; := &lt;expr&gt; + &lt;expr&gt; | &lt;expr&gt; - &lt;expr&gt; | [&lt;number&gt;]d(&lt;number&gt;|%) | &lt;number&gt; &lt;number&gt; := positive integer </code></pre> <p>So e.g. <code>d6+20-2d3</code> would be allowed, and should evaluate as</p> <pre><code>rand.Next(1, 7) + 20 - (rand.Next(1, 4) + rand.Next(1, 4)) </code></pre> <p>Also <code>d%</code> should be equivalent to <code>d100</code>.</p> <p>I know I could hack together some solution, but I also know that this seems like a very typical computer-science type problem, so there must be some super-elegant solution I should look into.</p> <p>I'd like the result of my parsing to have these capabilities:</p> <ul> <li>I should be able to output a normalized form of the expression; I'm thinking dice first, sorted by dice size, and always with a prefix. So e.g. the above sample would become <code>1d6-2d3+20</code>. Also any instances of <code>d%</code> would become <code>d100</code> in the normalized form.</li> <li>I should be able to evaluate the expression at-will, rolling different random numbers each time.</li> <li>I should be able to evaluate the expression with all of the dice-rolls maximized, so e.g. the sample above would give (deterministically) <code>1*6+20+2*3 = 32</code>.</li> </ul> <p>I know that this is exactly the type of thing Haskell, and probably other functional-type languages, would be great at, but I'd like to stay in C# if possible.</p> <p>My initial thoughts tend toward recursion, lists, and maybe some LINQ, but again, if I tried without some pointers from people who know things, I'm sure it'd end up being an inelegant mess.</p> <p>Another tactic that might work would be some initial regex-based string-replacement to turn dice expressions into <code>rand.Next</code> calls, and then on-the-fly evaluation or compilation... would this actually work? How could I avoid creating a new <code>rand</code> object every time?</p> http://stackoverflow.com/questions/1753257/can-this-breadth-first-search-be-made-faster 1 Can this breadth-first search be made faster? timbo 2009-11-18T02:33:23Z 2009-11-21T01:37:28Z <p>I have a data set which is a large unweighted cyclic graph The cycles occur in loops of about 5-6 paths. It consists of about 8000 nodes and each node has from 1-6 (usually about 4-5) connections. I'm doing single pair shortest path calculations and have implemented the following code to do a breadth-first search.</p> <pre><code>from Queue import Queue q = Queue() parent = {} fromNode = 'E1123' toNode = 'A3455' # path finding q.put(fromNode) parent[fromNode] = 'Root' while not q.empty(): # get the next node and add its neighbours to queue current = q.get() for i in getNeighbours(current): # note parent and only continue if not already visited if i[0] not in parent: parent[i[0]] = current q.put(i[0]) # check if destination if current == toNode: print 'arrived at', toNode break </code></pre> <p>The above code uses the Python 2.6 Queue module and getNeighbours() is simply a subroutine that makes a single MySQL call and returns the neighbours as a list of tuples e.g. (('foo',),('bar',)). The SQL call is quick.</p> <p>The code works ok however testing to down to depths of about 7 layers takes about 20 seconds to run (2.5GHz Intel 4GB RAM OS X 10.6)</p> <p>I'd welcome any comments about how to improve the run time of this code.</p> http://stackoverflow.com/questions/1768013/implementation-detail-for-graph-analysis-algorithms 0 Implementation Detail for Graph Analysis Algorithms aramadia 2009-11-20T02:50:33Z 2009-11-20T03:18:21Z <p>Let's say I have a graph with "heavy" nodes, that is each node is an object that is already carrying a lot of data. I want to do a graph transformation that requires me to calculate a special property for each node. This property only needs to be remembered temporarily to apply the transformation. How can I store this property efficiently?</p> <p>Adding a special_property field to each node seems like a waste as I only need to remember it for a short time. Another possibility is to create a "shadow" graph, which is a graph that has the exact same connections as the original one and only storing the special_property though this seems unwieldy.</p> <p>What is a generally acceptable way to tackle this problem?</p> http://stackoverflow.com/questions/580356/abstract-algebra-and-programming 3 Abstract algebra and Programming Amit 2009-02-24T03:28:43Z 2009-11-19T21:47:03Z <p>I am going to start learning Abstract Algebra- Groups, Rings,etc. I am interested to know any programming language, if at all which can help me learn/try the concepts I learn in theory. </p> <p>EDIT: I am not really looking at <strong>implementing</strong> what I learn. I am interested to know any language which already supports them.</p> <p>Thank You.</p> http://stackoverflow.com/questions/1762291/how-to-create-an-ontology-in-python 1 How to create an ontology in python? alex 2009-11-19T10:22:05Z 2009-11-19T14:16:59Z <p>Are there libraries or certain "techniques" that you can use to create an ontology of elements?</p> <p>Or "design patterns"?</p> <p>I am talking about just a "graph" of things. Suppose I have a bunch of words. Certain words are "under" other words or "related" to other words. I need a good way to group them and know their relationship.</p> http://stackoverflow.com/questions/847465/graphs-find-a-sink-in-less-than-ov-or-show-it-cant-be-done 1 Graphs: find a sink in less than O(|V|) - or show it can't be done flybywire 2009-05-11T10:07:04Z 2009-11-18T14:31:25Z <p>I have a graph with n nodes as an adjacency matrix.</p> <p>Is it possible to detect a sink in less than O(n) time?</p> <p>If yes, how? If no, can you prove it?</p> <p>Sink: a node that has incoming edges from all other nodes and no outgoing edges.</p> http://stackoverflow.com/questions/1548546/are-there-useful-static-analysis-tools-for-databases 4 Are there useful static analysis tools for databases? jldugger 2009-10-10T17:32:25Z 2009-11-18T05:14:06Z <p>Is there a tool for examining the configuration and schema of a database for dubious fields, relationships and configuration, similar to how <a href="http://en.wikipedia.org/wiki/Lint%5F%28software%29" rel="nofollow">static analysis tools like lint</a> will flag dubious lines of code?</p> <p>I'm not necessarily asking for normalization, but surely there's stupid stuff that can be detected without solving Hard AI or the Halting Problem.</p> http://stackoverflow.com/questions/1750165/worst-case-running-time-big-o 0 Worst case running time (Big O) Youki 2009-11-17T16:43:37Z 2009-11-17T17:01:22Z <p>Hi every one. I have this question, and I don't know how to solve it, because I don't understand it. :(</p> <p>The question is:</p> <blockquote> <p>Programs A and B are analyzed and are found to have worst case running times no greater than 150<i>n</i> log <em>n</em> and <em>n</em><sup>2</sup>, respectively. Answer the following questions:</p> <p>i) Which program has the better guarantee on the running time for large values of <em>n</em> (<em>n</em> > 10000)?</p> <p>ii) Which program has the better guarantee on the running time for small values of <em>n</em> (<em>n</em> &lt; 100)?</p> </blockquote> <p>Can any one help me and explain it for me? </p> http://stackoverflow.com/questions/1548713/how-can-i-learn-higher-level-programming-related-math-without-much-formal-trainin 8 How can I learn higher-level programming-related math without much formal training? levand 2009-10-10T18:35:35Z 2009-11-16T22:24:01Z <p>I haven't taken any math classes above basic college calculus. However, in the course of my programming work, I've picked up a lot of math and comp sci from blogs and reading, and I genuinely believe I have a decent mathematical mind. I enjoy and have success doing Project Euler, for example.</p> <p>I want to dive in and really start learning some cool math, particularly discrete mathematics, set theory, graph theory, number theory, combinatorics, category theory, lambda calculus, etc. My impression so far is that I'm well equipped to take these on at a conceptual level, but I'm having a really hard time with the mathematical language and symbols. I just don't "speak the language" and though I'm trying to learn it, I'm the going is extremely slow. It can take me hours to work through even one formula or terminology heavy paragraph. And yeah, I can look up terms and definitions, but it's a terribly onerous process that very much obscures the theoretical simplicity of what I'm trying to learn.</p> <p>I'm really afraid I'm going to have to back up to where I left off, get a mid-level math textbook, and invest some serious time in exercises to train myself in that way of thought. This sounds amazingly boring, though, so I wondered if anyone else has any ideas or experience with this.</p> http://stackoverflow.com/questions/93526/what-is-a-y-combinator 26 What is a y-combinator? Turbulent Intellect 2008-09-18T15:21:02Z 2009-11-15T22:16:38Z <p>A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them.</p> <p>What is a y-combinator? How do they work? What are they good for? Are they useful in procedural languages?</p> http://stackoverflow.com/questions/1734936/rsa-cryptosystem 0 RSA cryptosystem unknown (yahoo) 2009-11-14T17:27:10Z 2009-11-15T20:26:18Z <p>Hi i am trying to set up an RSA cryptosystem i have all the values except d selected prime numbers: p=1889, q=2003 n=3783667 phi=3779776 e= 61</p> <p>i got stuck finding d could anyone help me to figure it out?</p> <p>Setting up an RSA cryptosystem</p> <p>• Two large distinct prime numbers p and q are selected, and n = pq and Φ(n) = (p − 1)(q − 1) are calculated.</p> <p>• An integer e is selected such that gcd(Φ(n), e) = 1 and the multiplicative inverse d = e^(−1) in ZΦ(n) is calculated, i.e.</p> <p>ed ≡ 1 (mod Φ(n)).</p> <p>• The numbers p, q and Φ(n), are then discarded. • The pair (e, n) is published as the public encryption key • The number d is the secret decryption key.</p> http://stackoverflow.com/questions/1725363/prime-factorization 8 Prime Factorization chrisg 2009-11-12T21:01:17Z 2009-11-12T22:16:50Z <p>I have recently been reading about the general use of prime factors within cryptography. Everywhere i read, it states that there is no 'PUBLISHED' algorithm which operates in polynomial time (as opposed to exponential time), to find the prime factors of a key.</p> <p>If an algorithm was discovered or published which did operate in polynomial time, then how would this impact in the real world computing environment as opposed to the world of theory and computer science. Considering the extent we depend on cryptography would the would suddenly come to halt.</p> <p>With this in mind if P = NP is true, what might happen, how much do we depend on the fact that it is yet uproved.</p> <p>I'm a beginner so please forgive any mistakes in my question, but i think you'll get my general gist.</p> http://stackoverflow.com/questions/1722908/multiplicative-inverse 0 multiplicative inverse?!?!? unknown (yahoo) 2009-11-12T15:13:43Z 2009-11-12T16:26:11Z <p>Hi, I know that an affine cipher substitutes BD with SG. I need to find the encryption formula, in the form y = a x + b, where a and b are coefficients. From the information above I end up having to equations: a+b=18 and 3a+b=6 So I am working like this: a+b=18 and 3a + b = 6-> 3a+18-a=6->  2a= 6-18 -> 2a=14 (cuz it is mod 26)</p> <p>b=18-a </p> <p>2a=? So, O want to multiply by the multiplicative inverse of  2 mod 26</p> <p>I can't find a multiplicative inverse of number 2 with 26 (y = ax + b mod 26)</p> <p>Can anyone please help me find a and b???</p> http://stackoverflow.com/questions/1678608/which-cs-curriculum-to-take 2 Which CS curriculum to take? Tommy Chan 2009-11-05T05:54:35Z 2009-11-10T15:40:49Z <p>I'm currently planning to do a transfer right now and my area of interest is <strong>Software Development</strong>. </p> <p>I've been thinking a lot about these two curriculum and I want to ask advice on which one would benefit me in my future career (I'm thinking long term). </p> <p>This is from a university: <a href="http://www.cs.sfu.ca/undergrad/prospective/programs/sosy/overview.html" rel="nofollow">http://www.cs.sfu.ca/undergrad/prospective/programs/sosy/overview.html</a></p> <p>Typical university: Lots of heavy theory and classes are huge. </p> <p>This is an MIT-ish institution. Not college or university: www.bcit.ca/study/programs/550tdiplt#courses</p> <p>Courses are condensed into two years (8 courses per term), only results to a diploma. Very hands on and teaches a lot of new technologies. </p> <p>I understand that I'm comparing a university to something that isn't but the main reasons why I haven't decided yet are:</p> <ul> <li><p>I'm kind of a "hands-on" guy and I'm afraid I might end up hating going to school if I choose university.</p></li> <li><p>University will obviously take 1-2 yrs longer than the other option</p></li> </ul> <p>Can i get advice on this? Thank you.</p> http://stackoverflow.com/questions/1707977/bnf-grammar-derivation -1 BNF Grammar Derivation vaibhav 2009-11-10T13:29:45Z 2009-11-10T13:33:52Z <p>I want to apply rules of BNF Grammar to produce derivation for : a_Num</p> http://stackoverflow.com/questions/1567837/how-to-keep-up-to-date-on-latest-computer-science 6 How to keep up to date on latest computer science? reccles 2009-10-14T17:37:22Z 2009-11-09T17:04:41Z <p>I was re-reading some of my <a href="http://www.amazon.com/exec/obidos/ISBN=0321193679/stevemcconnelconA/" rel="nofollow">Steve McConnell books</a> and this quote got me thinking 'scientists build in order to learn, engineers learn in order to build'. On the vein of 'learning in order to build' I was wondering:</p> <p><strong>How are the software engineers keeping up to date on the latest technologies and research?</strong></p> <p>It would seem that publications through the ACM or IEEE are the main avenue of publication for researchers, but given the closed nature of this information does anyone actually use it outside of the research community? This form of research is also very new, and very risky, so an additional question is <strong>where do you draw the line in risk?</strong> Is it worth looking at bleeding edge research or better to wait until it makes it to paperback.</p> <p><strong>EDIT</strong>: I'm not a total noob. I've just noticed that (some) older developers are completely unaware of new technologies and can even be antagonistic to new tech. A healthy bit of skepticism is always useful, but willful ignorance is dangerous. In an effort to prevent this from happening to myself, I'm interested in how developers are staying up to date on new trends. </p> http://stackoverflow.com/questions/318313/what-programming-languages-are-used-in-different-scientific-domains 11 What programming languages are used in different scientific domains? Semenov 2008-11-25T18:03:13Z 2009-11-08T22:38:19Z <p>Does anyone know a of a distribution of programming language usage over scientific domains?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1696220/pac-man-representation-with-finite-state-automaton 1 Pac-Man representation with Finite State Automaton unknown (yahoo) 2009-11-08T12:17:29Z 2009-11-08T15:20:29Z <p>Hi there,<br> Consider a game similar to pac-mac that we want to represent it with an FSA graph. We have a maze (table) and there are berries into it in random positions. The goal is to eat all the berries in the maze. The commands we have to consider for the control are the following:<br> GOAHEAD, LEFT, RIGHT, CHECKBERRY(that checks if there is a berry in FRONT of pac man), EAT and OFF-MAZE.<br> We need maximum 10 stages... And keep in mind we can't have more than one gaps in a row. Thank you</p> <p><strong>EDIT:</strong> <img src="http://img338.imageshack.us/img338/2479/graphp.jpg" alt="alt text"> </p> <p>ok then. I created the graph but i can't find a way to overpass gaps. For example: On the maze after a certain row of berries all of a sudden there is a gap in front and the next berry is right down the gap. So I am not sure how my graph will look like as even if I turn left or right the checkberry command won't return TRUE value. So there has to be a way for the pac man to move to the gap square without eating but how will it decide whether to move to the one in front or to others?</p> http://stackoverflow.com/questions/1267945/tips-for-picking-a-computer-science-masters-program 2 Tips for picking a computer science masters program craigmoliver 2009-08-12T18:38:09Z 2009-11-07T16:59:35Z <p>I am in the process of researching computer science masters programs and need some help with picking a program. I graduated with a BBA in Business Information Systems from the University of West Georgia in 2003. I never considered myself the "programmer" type but my work over the last 6 years has pushed me in that direction. I started out in an IT-related position and it slowly evolved into more CS-related tasks. My latest job is almost pure CS and I've discovered that I love coding and would like to formalize this into a MS in Computer Science. </p> <p>I have been reading about programs a Georgia Tech and Georgia State and I would obviously need some remedial math. I'm pretty certain I could kill the GRE and my work experience qualifies as relevant. </p> <ul> <li>Does any have any tips, advice, or suggestions?</li> <li>Are there any "online" programs that are worth damn (I know most are rip offs)? </li> <li>Are most programs full-time?</li> <li>I also found a degree in "Applied Computer Science", anyone ever heard of that?</li> </ul>