遍历 链表的节点输出 如果是c语言是不是就正确了
/**
* struct ListNode {
* int val;
* struct ListNode *next;
* ListNode(int x) :
* val(x), next(NULL) {
* }
* };
*/
class Solution {
public:
vector<int> printListFromTailToHead(struct ListNode*
head) {// 遍历 链表的节点输出 如果是c语言是不是就正确了。
int i;
while(head->next){
cout<<head->val;
}
return 1;
}
};