Posts

Showing posts from May, 2024

csharp with vba codes word dependency chain search in dictionary

 Write a c sharp program for the condition where the data is in 2 columns csv file where no comma is there in column 1 and no comma is there in col 2. Only one comma is there to separate two columns in ASCII Dictionary file. Obviously the Dictionary is finite having row count is 300000000 (say N) and i will ask the words dependency chain for a specific word as input to the function. It will start the recursion from that particular word and will return the word dependency chain (Graph or Tree whichever best describe the dependency flow. It will also return if there is circularity present in the dependency chain. Scenario describes as in the below here"Suppose i supply the exhaustive dictionary in 2 column ASCII file in excel with every words having several meanings .Column 1 has lexically sorted words (repeating for different meanings) col 2 has different meanings corresponding to each words(one word can have several different meanings) . Column 2 has several words which we call te...

Context definition languages strategy definition languages Word Dependency Graphs

 We the c++ developers of win32 or java programmers from starting days try to understand the "context" as a data structure Then How to define a data structure for negotiations context? How to define data structures for Game Theory related Games Context ? How to design Data structures for Meta Games Contexts? How to filter out the context from the dilemmas discussions texts contents??? Which subject deals these things??? You've dived into a fascinating area at the intersection of computer science, artificial intelligence, and decision making. Here's how to approach data structures for these contexts: Negotiation Context: Data Structure: A negotiation context can be modeled using a hierarchical structure: Issues: List of issues being negotiated (e.g., price, delivery time). Preferences: Preferences for each issue, for both parties (e.g., low price for buyer, high price for seller). Constraints: Limitations for each party (e.g., budget for buyer, inventory for seller). C...