难溶电解质的溶度积常数越小,则其溶解度也越小。( )
查看答案
同离子效应不仅会使弱电解质的解离度降低,而且会使难溶电解质的溶解度降低。
A. 对
B. 错
佛尔哈德法滴定应在酸性条件下进行。
A. 对
B. 错
一种配离子可以在任何情况下都可以转化为另一种配离子。( )
A. 对
B. 错
const int maxstack = 10; // small value for testingclass Double_stack {public:Double_stack();bool empty_a() const;bool empty_b() const;bool full() const; //Same method checks both stacks for fullness.Error_code pop_a();Error_code pop_b();Error_code stacktop_a(Stack_entry &item)const;Error_code stacktop_b(Stack_entry &item) const;Error_code push_a(const Stack_entry&item);Error_code push_b(constStack_entry &item);private:int top_a; //index of top of stack a; -1 if emptyint top_b; //index of top of stack b; maxstack if emptyStack_entry entry[maxstack];};Double_stack::Double_stack(){ top_a = ;top_b = ; }Error_code Double_stack::push_a(const Stack_entry &item){ if (>= ) return overflow;entry[ ] = item;return success;}Error_code Double_stack::push_b(const Stack_entry &item){ if ( >= ) return overflow;entry[ ] = item;return success;}Error_code Double_stack::stacktop_a(Stack_entry &item)const{ if (== ) return underflow;item = ;returnsuccess;}Error_code Double_stack::stacktop_b(Stack_entry &item)const{ if ( == ) return underflow;item = ;return success;}bool Double_stack::full() const { return ; }bool Double_stack::empty_a() const { return ;}bool Double_stack::empty_b() const { return ; }Error_code Double_stack::pop_a(){ if (<= ) return underflow;else ;return success;}Error_code Double_stack::pop_b(){ if (>= ) return underflow;else ;return success;}typedef int Stack_entry;main(){ Double_stack e;e.push_a(1);e.push_a(2); e.push_a(3);e.push_b(1);e.push_b(2); e.push_b(3);int x;e.stacktop_a(x); cout << x;e.stacktop_b(x); cout << x;e.pop_a();e.pop_b();e.stacktop_a(x); cout << x;e.stacktop_b(x); cout << x;e.empty_a();e.empty_b();}