Technote87 bioinformatics bioinformatics, biomedical informatics, medical informatics, health informatics어디서 부터 시작해야 되는것인가... http://medinfo2015.com/ http://fenyolab.org/research/research.html 2016. 1. 3. Genetic Algorithms http://whitedwarf.org/metcalfe/node8.htm Genetic programmings on Hadoop Evolutionary Computation-> Hadoop Map Reduce Parallel GA mutation crossover PoP Hadoop MR-> Hash PRG Sub-popSub-pop Parallel GA 2015. 7. 20. [C++] 생성자와 소멸자 - 생성자의 필요성 p 라는 이름의 객체를 "생성과 동시에 초기화 하려고 한다. 초기화 하고자 하는 멤버들이 private으로 선언되어 있다. Person p 줄은 클래스의 내부가 아니라 외부에 해당되므로 접근이 허용되지 않는다. 멤버들을 public 으로 선언할수도 있으나 이는 정보 은닉에 위배 되므로 다른 경우를 택한다. #include using std::cout; using std::endl; using std::cin; const int SIZE=20; class Person { char name[SIZE]; char phone[SIZE]; int age; public: void ShowData(); }; void Person::ShowData() { cout 2009. 9. 20. [C++] 캡슐화 2 #include using std::cout; using std::endl; using std::cin; class Point { int x; int y; public: int GetX(){return x;} int GetY(){return y;} void SetX(int _x); void SetY(int _y); void ShowData(); }; void Point::SetX(int _x) { if(_x100) { cout 2009. 9. 20. 이전 1 2 3 4 ··· 22 다음