d******i 发帖数: 7160 | 1 放函数外边报错: "Line 7: 'bitset' does not name a type"
class Solution {
public:
set t;
bitset<1000> ss;
int XXX{
...}
放里边报错 “Line 12: 'bitset' was not declared in this scope”
int XXX {
set t;
bitset<1000> ss;
...}
set能过。vc都过。
更奇的是
std::set uu;
std::bitset<100> vv;
set能过
bitset 报错 Line 15: 'bitset' is not a member of 'std',
咋肥四?
stl标准都支持吧? |
r*******e 发帖数: 7583 | 2 自己加#include
【在 d******i 的大作中提到】 : 放函数外边报错: "Line 7: 'bitset' does not name a type" : class Solution { : public: : set t; : bitset<1000> ss; : int XXX{ : ...} : 放里边报错 “Line 12: 'bitset' was not declared in this scope” : int XXX { : set t;
|
d******i 发帖数: 7160 | 3 在头上加了:
#include
using namespace std;
没用。
报错 Line 18: 'bitset' is not a member of 'std'
笑点是set,stack,vector啊 都可以用,不需额外声明什么header。
不知leetcode用的是哪门子的stl,lol.
【在 r*******e 的大作中提到】 : 自己加#include
|
z****e 发帖数: 54598 | 4 leetcode限制各种工具类/包/库的使用
我曾经想用过list.sort,华丽滴失败了 |
s***e 发帖数: 403 | 5 leetcode很奇怪
我本机编译运行的结果和他上面的不一样。他每次都少几个vector的元素,然后报错。 |