|
c++로 작성한 소스입니다.
linked list를 좌우 왕복이 가능하도록 한
doubly linked list입니다.
class를 사용했습니다.
|
- 페이지 1페이지
- 가격 6,000원
- 등록일 2007.06.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c++로 작성한 소스입니다
linked list입니다.
new, delete를 사용하여 아주 효율적으로 데이타를 관리할 수 있습니다.
class를 유연하게 사용하였습니다.
|
- 페이지 1페이지
- 가격 5,000원
- 등록일 2007.06.19
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c=1;
fscanf(file, "%d", &Num_case);
while(Num_case--)
{
while(1)
{
fscanf(file, "%d %d %d %c", &Team, &PB, &Time, &Type);
fgetc(file);
c = fgetc(file);
switch(Type)
{
case 'I': // t
|
- 페이지 71페이지
- 가격 7,000원
- 등록일 2010.02.07
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
operator & operand
typedef struct Expression
{
element Operator;
int Operand;
int flag;
}Expression;
//Linked_list
typedef struct stackNode
{
BOOLS data;
struct stackNode * link;
}stackNode;
typedef struct ListStack_h
{
stackNode * head;
}ListStack_h;
|
- 페이지 10페이지
- 가격 1,300원
- 등록일 2006.06.13
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
//Function Prototypes
void initialize(char board[SIZE][SIZE]);
void print_board(char board[SIZE][SIZE]);
int is_winner(char board[SIZE][SIZE]);
int is_full(char board[SIZE][SIZE]);
int check_move(char board[SIZE][SIZE], int x, int y);
//Main Function
int main() {
//Declare necessary
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2012.07.29
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include "stdafx.h"
#include <conio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
struct ranking
{
int rank;
char name[10];
int point;
int win_percent;
};
void status_view(int x,int y)// x는 현재 사용자가 낸 것,
y는 컴퓨터
|
- 페이지 15페이지
- 가격 2,000원
- 등록일 2007.01.05
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <iostream>
#include <fstream>
#include "DAGStack.h"
#include "LinkedList.h"
#include "Vertex.h"
#include "Stack.h"
using namespace std;
#define FILE_NAME "digraph.txt" //인풋파일이름
/*클래스 스택노드
클래스 스택
클래스 버택스
클래스 리스트노
|
- 페이지 39페이지
- 가격 4,000원
- 등록일 2011.12.22
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
class Node
{
friend class NodeList; //링크드 리스트를 위해서 프렌드 이용
friend class SellNode;
private:
string date;
string brand;
string model;
int value;
Node *next;
int count;
publ
|
- 페이지 10페이지
- 가격 1,300원
- 등록일 2007.04.30
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
부족하다는 것을 느끼고 있다. 게다가 이 과목이 쉬운 것은 아니라고 생각한다. 그래서 남들보다 더 열심히 하는 중이고
열심히 하는 만큼 자료구조를 더 완벽히 알아가고 싶다. 프로그래밍 소스(연결리스트 이용한 스케줄 프로그램)
|
- 페이지 10페이지
- 가격 1,500원
- 등록일 2011.04.30
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
c언어로 만든 화면그대로 LIST 출력 하는 프로그램 c언어로 만든 화면그대로 LIST 출력 하는 프로그램
|
- 페이지 1페이지
- 가격 700원
- 등록일 2007.10.31
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|