Archives
- 2015
-
2014
- September
- June
- May
- February
-
January
-
การใช้ high Resolution Timer ด้วย c++
01/31/14
การใช้ high Resolution Timer ด้วย c++
#include <windows.h>
#include <stdio.h>
#include <conio.h>
typedef struct {
LARGE_INTEGER start;
LARGE_INTEGER stop;
} stopWatch;
class CStopWatch -
เฉลย Google Code jam 2009 : Welcome to google code jam (Dynamic Programming)
01/21/14
เฉลย Google Code jam 2009 : Welcome to google code jam (Dynamic Programming)
จากโจทย์
https://code.google.com/codejam/contest/90101/dashboard#s=p2&a=2
import java.io.File;
import java.io.IOException;
import java.io.Pr -
Linked List ในภาษา C
01/17/14
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
typedef struct Nodex
{
int data;
Nodex* next;
} Node ;
typedef struct List
{
int size;
Node * head;
} LinkedList;
void addFirst(LinkedList -
Face Detection in C#
01/10/14
มาเขียนโปรแกรม FACE DETECTION ด้วย C# กันเถอะ
จริงๆ ACCORD.VISION (http://accord-framework.net/) อันนี้มันก็คือ Image Processign โดย ใช้ Aforge.NET (http://www.aforgenet.com/) เป็นฐา
-
การใช้ high Resolution Timer ด้วย c++
- 2013