由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - leetcode不支持bitset?
相关主题
leetcode OJ 不能使用exception?我这个 3Sum 怎么过不了leetcode的测试阿
Leetcode 最新题, 搞不懂3sum on LeetCode OJ
请问leetcode 支持hash_map bitset 之类的吗?leetcode java solution哪里有啊?
问个C++模板定义的问题这段代码在leetcode上面跑不了??
Leetcode 报错 required from here?关于leetcode上那个买卖股票II的问题
为什么leetcode刷题用Python会报错:Status: Time Limit Exceeded求助各位大牛:LeetCode的Decode Ways
问个python语法leetcode上的populate next node I and II
leetcode 3sum runtime 一問请问哪里有题库?
相关话题的讨论汇总
话题: bitset话题: line话题: set话题: int话题: 报错
进入JobHunting版参与讨论
1 (共1页)
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的元素,然后报错。
1 (共1页)
进入JobHunting版参与讨论
相关主题
请问哪里有题库?Leetcode 报错 required from here?
leetcode 一道题 valid palindrome为什么leetcode刷题用Python会报错:Status: Time Limit Exceeded
Best Time to Buy and Sell Stock II这么简单?问个python语法
leetcode很有意思啊leetcode 3sum runtime 一問
leetcode OJ 不能使用exception?我这个 3Sum 怎么过不了leetcode的测试阿
Leetcode 最新题, 搞不懂3sum on LeetCode OJ
请问leetcode 支持hash_map bitset 之类的吗?leetcode java solution哪里有啊?
问个C++模板定义的问题这段代码在leetcode上面跑不了??
相关话题的讨论汇总
话题: bitset话题: line话题: set话题: int话题: 报错