logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

C++获取数组长度的方法

在不使用其他容器的情况下,用sizeof关键字来获取数组长度:template <class T>int length(T& a) {return sizeof(a) / sizeof(a[0]);}注意,目前就发现上面这一种方法,使用时直接用length(arr)即可,其中arr可以是任何类型。下面列举的都会出错://错误一template &

【LeetCode 002】Add Two Numbers

You are given two non-empty linked lists representing two non-negative integers.The digits are stored in reverse order and each of their nodes contain a singledigit. Add the two numbers and return...

到底了