You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
S
#include<iostream>
#include<stdio.h>
using namespace std;
/*
Đ?i 1 s? nguyên sang co s? 2 8 16
*/
// khai báo 1 cái node
struct node
{
int data;
struct node *pNext;
};
typedef struct node NODE;
// khai báo c?u trúc c?a 1 cái stack
struct stack
{
NODE *pTop; // con tr? qu?n lí...