Daily Diaries Of CTK

.

Hãy chọn cho mình một con đường để đi

Nếu bạn không có con đường nào để đi thì cũng không có thành công nào chọn bạn

Chủ Nhật, 22 tháng 5, 2016

Binary Search Tree

#include <iostream> #include<cctype> #include <stdlib.h> #include <conio.h> using namespace std; struct node {  int element;  node *left;  node *right;  int height; }; typedef struct node *nodeptr; class bstree {  public:   void insert(int,nodeptr &);   void del(int, nodeptr &);   int deletemin(nodeptr &);   void find(int,nodeptr &);   nodeptr...

Thứ Năm, 12 tháng 5, 2016

How to make install graphic in ubuntu

Hello friends , here we are with a video "Graphics Programming in C++ on Ubuntu" , how to setup graphics.h in Linux environment / Ubuntu. Download link: http://download.savannah.gnu.org/rele... commands used in the tutorial: = sudo apt-get update = sudo apt-get upgrade = sudo apt-get install build-essential = sudo apt-get install libsdl-image1.2 libsdl-image1.2-dev guile-1.8 guile-1.8-dev libsdl1.2debian libart-2.0-dev libaudiofile-dev...

Chủ Nhật, 1 tháng 5, 2016

Tôi đã học tin học như thế nào? Bắt đầu từ đâu

td p { margin-bottom: 0in; }h2.cjk { font-family: "Noto Sans CJK SC Regular"; }h2.ctl { font-family: "FreeSans"; }p { margin-bottom: 0.1in; line-height: 120%; }code.cjk { font-family: "Nimbus Mono L",monospace; }a:link { } Tôi đã học tin học như thế nào? Bắt đầu từ đâu Trong bài viết này mình sẽ cố gắng trả lời ngắn gọn và đơn giản những câu hỏi mà mình nghĩ rằng sẽ có ích đối với các bạn đặc biệt có đam mê đối với Tin học, nhưng...