Question

j'ai un code en c ++ d'arbres de recherche binaires & amp; Je veux l'inclure à l'application de formulaire Windows pour le faire par Windows quelqu'un peut-il m'aider, comment puis-je inclure le code et comment le faire et tout autre code MERCI ........................

Était-ce utile?

La solution

La recherche binaire est déjà intégrée au framework .NET.

VB:

 Dim foo As New Collections.Generic.List(Of Integer)
 foo.BinarySearch(3)

C #:

List<Integer> foo = new List<Integer>();
foo.BinarySearch(3);

Vous pouvez aussi écrire un WinForm basé sur C ++ si vous voulez tout écrire en C ++ ...

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top