역순 출력 링크 의 요소
1553 단어 체인 테이블
#include
#include
typedef struct Node
{
int m_data;
Node* m_next;
}Node, *List;
// -
void printListInverse1(List list)
{
if (list)
{
printListInverse1(list->m_next);
std::cout<m_data<<:endl void="" printlistinverse2="" list="" std::stack=""> stack_noed;
while(!stack_noed.empty())
{
stack_noed.pop();
}
// push
while(list)
{
stack_noed.push(list);
list = list->m_next;
}
// ,
while(!stack_noed.empty())
{
std::cout<m_data<<:endl stack_noed.pop="" void="" insertlist="" list="" int="" data="" if="">m_next, data);
}
else
{
Node* node = new Node;
node->m_data = data;
node->m_next = 0;
list = node;
}
}
int main()
{
Node* list = new Node;
list->m_next = 0;
insertList(list, 1);
insertList(list, 2);
insertList(list, 3);
insertList(list, 4);
insertList(list, 5);
insertList(list, 6);
//
printListInverse1(list->m_next);
//
printListInverse2(list->m_next);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
하나의 단일 체인 테이블의 순환과 귀속 실현을 반전시키다텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.