- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
<分区>
抱歉,如果标题不完善,我不确定如何表达。
我正在为类编写一个程序,该程序通过了我的所有测试,但未通过一些测试用例。一些研究表明,事物的输入方式很重要。
如果我输入这样的东西:00第一的0第二0第三0第四0第五1个第六1个第七1个第八(进入)1个第九4个(输入)
或者在每行之间按回车键,一切都很好。但是,如果我复制/粘贴整组输入(或像我们的评分那样用 cin>> 将其输入),我会发现在随机输出(4 个触发器输出)或段错误 11 之间变化的怪异现象。
这是主要方法(不能改变这个)
#include"tDeque.h"
using namespace std;
template <typename T>
void test (T s) {
Deque<T> *DQ = new Deque<T>();
T input;
int op=0;
while (op<7)
{
std::cin>> op;
switch(op) {
case 0:
std::cin>>input;
try {
DQ->push_front(input);
} catch (exception e) {
cout<<"Out of Memory Exception!"<<endl;
}
break;
case 1:
std::cin>>input;
try{
DQ->push_back(input);
} catch (exception e) {
cout<<"Out of Memory Exception!"<<endl;
}
break;
case 2:
try{
std::cout<<DQ->pop_front()<<std::endl;
} catch (exception e) {
cout<<"Caught Exception for empty stack!"<<endl;
}
break;
case 3:
try{
std::cout<<DQ->pop_back()<<std::endl;
} catch (exception e) {
cout<<"Caught Exception for empty stack!"<<endl;
}
break;
case 4:
std::cout<<DQ->toStr();
break;
case 5:
std::cout<<DQ->size()<<std::endl;
break;
case 6:
std::cout<<DQ->empty()<<std::endl;
break;
}
}
}
int main(int argc, char **argv) {
int op=0;
std::string input;
int type;
cin>>type;
string s = "tDeque";
switch(type) {
case 0:
test(s);
break;
case 1:
test(3.2);
break;
case 2:
test(1);
break;
default:
return 1;
}
return 0;
}
这是我的一些代码(我一直在尝试在代码中打断。它有帮助,但不能解决我的问题)
void Deque<T>::needIGrow()
{
try {
if(front==arrSize-1 &&back==0)
{ //we need a new array double in size
T *arr2=new T[arrSize*2];
//we watn to be 1/3 of the way up the new array to start, and the new array is double in size.
int newBack=arrSize*2/3;
int oldFront=front;
for(int i=back;i<=oldFront;i++)
{ //Transfer old contents to new array
arr2[i+newBack]=arr[i];
front=newBack+i;
}
// cout << arr2[newBack];
back=newBack;
//saftey check. Rounded numbers can be a pain
// delete [] arr;
//update arraysize
arrSize=arrSize*2;
//transfer over the array
arr=arr2;
// delete [] arr2;
}
}
catch (bad_alloc ex) {
delete[] _emergencyMemory;
cerr << "Out of memmory while growing array";
exit(1);
}
}
template <typename T>
void Deque<T>::needIShiftLeft()
{
try
{
//if the left has room but the right doesnt, shift left. Do so far enough to move all the way to the middle to minimize this opperation.
if(front>=arrSize-2)
{
int shiftLeftBy=back/2;
for(int i=0;i+shiftLeftBy<arrSize;i++)
{
arr[i]=arr[i+shiftLeftBy];
}
back=back-shiftLeftBy;
front=front-shiftLeftBy;
}
}
catch (bad_alloc ex) {
delete[] _emergencyMemory;
cerr << "Out of memmory while shifting array left";
exit(1);
}
}
template <typename T>
// Inserts the element at the front of the queue.
void Deque<T>::push_back(T item) {
sleepToFix();
try{
//ignore emtpy Ts. they will cause havok
//check if we need to grow. the false lets the method we are coming from a back push, so it knows what to check.
needIGrow();
//do we need to shift?
needIShiftLeft();
if(mySize==0)
{
arr[front]=item;
}
else{
front=front+1;
arr[front]=item;
}
mySize++;
}
catch (bad_alloc ex) {
delete[] _emergencyMemory;
cerr << "Out of memmory while pushing back";
exit(1);
}
}
// Removes and returns the element at the back of the queue.
template <typename T>
T Deque<T>::pop_front() {
sleepToFix();
if (mySize==0) {
throw range_error("Tried to pop front on empty stack");
}
try{
//same as pop back
T s=arr[back];
//arr[back]=NULL;
//handle the initial case of front=back, dont seperate them yet
if(front!=back)
{
back=back+1;
}
needIShrink();
if(mySize!=0)
mySize=mySize-1;
return s;}
catch (bad_alloc ex) {
delete[] _emergencyMemory;
cerr << "Out of memmory while popping front";
exit(1);
}
}
感谢您的帮助。
我无法理解 XmlWriter 在 C# 中的工作方式。假设以下代码在某处使用过。 StringBuilder builder = new StringBuilder(); XmlWriterSett
两者的主要区别是什么 一次性 一次性观察者 复合 Material 一次性 何时使用它们中的每一个 最佳答案 Disposable 是可以取消的作业。CompositeDisposable 是一个父作
我使用 QML 列布局,但我只想禁用(或减少)两个元素之间的间距。其余之间的间距应单独保留。 这可能吗? 谢谢。 最佳答案 减少是困难的,但增加两个相邻项之间的间距很容易:只需在它们之间插入一个空的
我有一个“设置” View 和关联的 Controller ,在从源代码管理克隆站点后,我立即使用它们来配置 MVC 站点的数据库和 web.config。 运行一次后,我想防止“设置” Contro
我正在尝试从 Peter Seibel 的《Practical Common Lisp》一书中学习 Lisp。在 chapter 8 : "Macros: Defining your own" ,我遇
我正在实现一个从 Resource 发出行的可观察对象. 问题是这个资源真的不喜欢从创建它的不同线程关闭(它会杀死一只小狗并在发生这种情况时抛出异常)。 当我处理订阅时,资源 Cancellable/
假设我使用以下命令启动了一次性流程:heroku run:detached "node do-some-stuff.js" --app my-app命令的输出是这样的: /usr/local/hero
是否可以识别正在运行一次性 dyno(即 heroku run rails console)的用户(可能通过 Heroku 电子邮件)?用例自动将更改归因于该用户。 最佳答案 我认为这是不可能的,因为
前一段时间我使用 setup_environ() 编写了一个从命令行运行的一次性 python 脚本,它不太适合作为自定义 manage.py 命令(我的首选)。它很好地设置了一切。我假设我们弃用了这
当我使用 RXJava 1 时,我总是跟踪我的订阅以在 onDestroy Activity 中执行取消订阅。示例:https://medium.com/@scanarch/how-to-leak-m
在较旧的 MVC HTML 帮助程序中,可以使用 IDisposable 来包装内容 - 例如 BeginForm 帮助程序会自动包装 *stuff*带有结束 form 标记 *stuff*
我想使用 System.Threading.Timer 执行一次。该计时器应该在不再需要时(即回调触发时)通过调用 Dispose 来确定性地清理。 问题在于回调无法可靠地获取对 Timer 的引用!
我是 Angular 1.5 的新手,正在学习单向数据流的最佳实践。我要离开这个 jsfiddle,我真的很困惑特别是一种行为。 我理解数据从父级向下流向子级并且是单向绑定(bind)的,即子级的变化
我正在尝试抓取一个使用大量 ajax 效果在表格中显示数据的网站。 当您与网站交互时,会通过 JSON 返回一些数据。 我知道 URL 以及如何构造它,但如果我尝试重新请求此 JSON,服务器会返回
是否可以在一次性级触发模式下使用epoll? 当我搜索时,我找不到任何关于它的信息;好像大家都用边沿触发的方式。 最佳答案 When the EPOLLONESHOT flag is selected
在阅读了我能找到的关于延续的几乎所有内容后,我仍然无法理解它们。也许是因为所有的解释都与 lambda 演算密切相关,我很难理解。 通常,在您完成当前的事情(即计算的其余部分)之后,continuat
我有一个 block 的自定义实现,它的工作方式很像 Html.BeginForm() .实现基本如下: public class MyBlock : IDisposable { privat
我们有一个广泛的经典 ASP 站点,我们正在寻求升级到 ASP .Net(很可能是最新版本)。显然,一次升级所有页面将是一项艰巨的任务,因此我们一开始只希望在 ASP .Net 中编写新页面(和页面重
我有一个 Django 和 django 休息框架项目,我希望移动设备能够请求 token ,然后在断开连接之前使用该 token x 分钟。我不想为每个移动设备创建一个用户,我只想要一个一次性密码。
我正在通过 Forte.js 集成 ACH eCheck 付款。 文档说第一步是获取一次性安全 token ,我就是这样做的,使用 forte.js . 那么我应该将此 token 用于 REST A
我是一名优秀的程序员,十分优秀!