Search Results

1
vote
3answers
295 views

Are two int arrays of different size “type equivalent” in C?

I'm reading about Type Equivalence in my Programming Languages class and I've come across a situation in C I'm unsure about. It describes C's "Type Equivalence" as: …
2
votes
5answers
266 views

How should I program a simulation of a “car” moving along a track?

For Operating Systems class I'm going to write a scheduling simulator entitled "Jurrasic Park". The ultimate goal is for me to have a series of cars following a set path and passengers wait …
5
votes
2answers
315 views

How can I implement the unification algorithm in a language like Java or C#?

I'm working through my AI textbook I got and I've come to the last homework problem for my section: "Implement the Unification Algorithm outlined on page 69 in any language of your choice." …
0
votes
1answer
119 views

How can I modify the backtracking algorithm so it can run on “and/or” graphs?

In Artificial Intelligence we studied the backtracking algorithm. Here is the pseudocode our book offers: function backtrack; begin SL:= [Start]; NSL := [Start]; DE := [] CS := …