本文整理汇总了C++中TQueue类的典型用法代码示例。如果您正苦于以下问题:C++ TQueue类的具体用法?C++ TQueue怎么用?C++ TQueue使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TQueue类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: _tmain
int _tmain(int argc, _TCHAR* argv[])
{
int speed, cost;
float road_clearance;
std::string s;
TQueue<Cars> q;
int choice = 0;
Cars *item;
std::cout << "Hello, here are possbile actions: " << std::endl;
std::cout << "1: Push item (Press a). Enter\n\t1. Jeep. Then enter price and road clearance\n\t2. Sedan. Then enter price and speed\n\t3. Hatchback. Then enter price and speed" << std::endl;
std::cout << "2: Pop item (Press p)" << std::endl;
std::cout << "3: Search (Press s). Enter\n\t1. Jeep. Then enter price and road clearance\n\t2. Sedan. Then enter price and speed\n\t3. Hatchback. Then enter price and speed" << std::endl;;
std::cout << "4: Remove item (Press r). Enter\n\t1. Jeep. Then enter price and road clearance\n\t2. Sedan. Then enter price and speed\n\t3. Hatchback. Then enter price and speed" << std::endl;
std::cout << "5: Destroy all container (Press d)" << std::endl;
std::cout << "6: Output all container items (Press o)" << std::endl;
std::cout << "6: Quit (Press q)" << std::endl;
while ((choice = getchar()) != 'q') {
fflush(stdin);
switch (choice) {
std::cout << choice << std::endl;
case 'a':
if ((choice = getchar()) == '1') {
std::cin >> cost >> road_clearance;
Jeep jeep(cost, road_clearance);
q.PushBack(jeep);
}
else if (choice == '2') {
std::cin >> cost >> speed;
q.PushBack(Sedan(cost, speed));
}
开发者ID:Mikhail-Z,项目名称:MAI,代码行数:31,代码来源:oop4.cpp
示例2: least
static double least(void* v) {
TQueue* q = (TQueue*)v;
TQItem* i = q->least();
double x = -1e9;
if (i) {
x = i->t_;
}
return x;
}
开发者ID:neurodebian,项目名称:pkg-neuron,代码行数:9,代码来源:tqueue.cpp
示例3: find
static double find(void* v) {
TQueue* q = (TQueue*)v;
TQItem* i = q->find(*getarg(1));
double x = -1e9;
if (i) {
x = i->t_;
q->remove(i);
}
return x;
}
开发者ID:neurodebian,项目名称:pkg-neuron,代码行数:10,代码来源:tqueue.cpp
示例4: FloodFill
void FogWorker::FloodFill(int32 x, int32 y)
{
if(x < 0 || x >= TextureSize || y < 0 || y >= TextureSize)
{
return;
}
// Wikipedia
// Flood-fill (node, target-color, replacement-color):
// 1. If target - color is equal to replacement - color, return.
// 2. If color of node is not equal to target - color, return.
if(FMath::IsNearlyEqual(UnfoggedData[x + y * TextureSize], 1.0f))
{
return;
}
// 3. Set Q to the empty queue.
TQueue<FIntVector> Q;
// 4. Add node to Q.
Q.Enqueue(FIntVector(x, y, 0));
FIntVector N;
// 5. For each element N of Q :
while(Q.Dequeue(N))
{
// 6. Set w and e equal to N.
auto w = N, e = N;
// 7. Move w to the west until the color of the node to the west of w no longer matches target - color.
while(w.X - 1 > 0 && !FMath::IsNearlyEqual(UnfoggedData[w.X - 1 + w.Y * TextureSize], 1.0f))
{
w.X--;
}
// 8. Move e to the east until the color of the node to the east of e no longer matches target - color.
while(e.X + 1 < TextureSize && !FMath::IsNearlyEqual(UnfoggedData[e.X + 1 + e.Y * TextureSize], 1.0f))
{
e.X++;
}
// 9. For each node n between w and e :
for(auto i = w.X; i <= e.X; ++i)
{
FIntVector n(i, N.Y, 0);
// 10. Set the color of n to replacement - color.
UnfoggedData[n.X + n.Y * TextureSize] = 1.0f;
// 11. If the color of the node to the north of n is target - color, add that node to Q.
if(n.Y + 1 < TextureSize && !FMath::IsNearlyEqual(UnfoggedData[n.X + (n.Y + 1) * TextureSize], 1.0f))
Q.Enqueue(FIntVector(n.X, n.Y + 1, 0));
// 12. If the color of the node to the south of n is target - color, add that node to Q.
if(n.Y - 1 > 0 && !FMath::IsNearlyEqual(UnfoggedData[n.X + (n.Y - 1) * TextureSize], 1.0f))
{
Q.Enqueue(FIntVector(n.X, n.Y - 1, 0));
}
}
// 13. Continue looping until Q is exhausted.
}
// 14. Return.
}
开发者ID:RxGamesLtd,项目名称:USS13,代码行数:55,代码来源:FogWorker.cpp
示例5: OutputQueue
void OutputQueue(TQueue queue)
{
typename TQueue::key_map propertyMap = queue.keys();
// Read out the queue, saving the objects in the order they were in the queue
while(!queue.empty())
{
typename TQueue::value_type queuedObject = queue.top();
std::cout << "queuedObject: " << queuedObject << " ";
typename boost::property_traits<typename TQueue::key_map>::value_type value = get(propertyMap, queuedObject);
std::cout << " value: " << value << std::endl;
queue.pop();
}
}
开发者ID:daviddoria,项目名称:BoostHelpers,代码行数:14,代码来源:BoostHelpers.hpp
示例6: WaitForEventInQueue
bool FAppEventManager::WaitForEventInQueue(EAppEventState InState, double TimeoutSeconds)
{
bool FoundEvent = false;
double StopTime = FPlatformTime::Seconds() + TimeoutSeconds;
TQueue<FAppEventData, EQueueMode::Spsc> HoldingQueue;
while (!FoundEvent)
{
int rc = pthread_mutex_lock(&QueueMutex);
check(rc == 0);
// Copy the existing queue (and check for our event)
while (!Queue.IsEmpty())
{
FAppEventData OutData;
Queue.Dequeue(OutData);
if (OutData.State == InState)
FoundEvent = true;
HoldingQueue.Enqueue(OutData);
}
if (FoundEvent)
break;
// Time expired?
if (FPlatformTime::Seconds() > StopTime)
break;
// Unlock for new events and wait a bit before trying again
rc = pthread_mutex_unlock(&QueueMutex);
check(rc == 0);
FPlatformProcess::Sleep(0.01f);
}
// Add events back to queue from holding
while (!HoldingQueue.IsEmpty())
{
FAppEventData OutData;
HoldingQueue.Dequeue(OutData);
Queue.Enqueue(OutData);
}
int rc = pthread_mutex_unlock(&QueueMutex);
check(rc == 0);
return FoundEvent;
}
开发者ID:xiangyuan,项目名称:Unreal4,代码行数:49,代码来源:AndroidEventManager.cpp
示例7: do_command
bool do_command(char c, TQueue &queue)
{
bool continue_input = true;
TQueue::entry_type x;
switch (c)
{
case 'r':
case 'R':
if (TQueue::underflow == queue.retrieve(x))
{
std::cout << "Queue is empty!" << std::endl;
}
else
{
std::cout << std::endl << "The first entry is : " << x << std::endl;
}
break;
case 's':
case 'S':
break;
case 'a':
case 'A':
break;
case '#':
break;
case 'q':
case 'Q':
return false;
default:
std::cout << "Command is not implemented!" << std::endl;
}
return continue_input;
}
开发者ID:Budskii,项目名称:ulib-win,代码行数:35,代码来源:test_queue.cpp
示例8: breadFirstPrint
void AVL::breadFirstPrint(){
TQueue<Node*> q;
if(root_){
q.enqueue(root_);
while(!q.isEmpty()){
Node* curr=q.front();
q.dequeue();
if(curr->left_)
q.enqueue(curr->left_);
if(curr->right_)
q.enqueue(curr->right_);
cout << curr->data_ << endl;
}
}
}
开发者ID:cathyatseneca,项目名称:dsa555.f12,代码行数:16,代码来源:avl.cpp
示例9: levelOrder
void TwoThreeTree::levelOrder() {
if (root == NULL) return;
// Use a tree to do levelOrder Traversal
TQueue queue;
queue.push(root);
root->level = 0;
cout << "Level Order Traversal:\n";
int currentLevel = 0;
while (!queue.isEmpty()) {
const TNode *t = queue.top();
if (t->level != currentLevel) {
cout << endl;
currentLevel = t->level;
}
// push t's children on queue, set their level nubmer
t->print();
if (!t->isLeaf) {
int nextLevel = t->level + 1;
t->left->level = nextLevel;
queue.push(t->left);
t->middle->level = nextLevel;
queue.push(t->middle);
if (t->rlow != -1) {
t->right->level = nextLevel;
queue.push(t->right);
}
}
queue.pop();
}
cout << endl << endl;
}
开发者ID:xiayan,项目名称:data_structures,代码行数:39,代码来源:TwoThreeTree.cpp
示例10: DFS
void DFS(const TGraph& g, int v, TLine* result) {
result->resize(g.size());
fill(result->begin(), result->end(), -1);
TQueue q;
(*result)[v] = 0;
q.push(v);
while (!q.empty()) {
int now = q.front();
q.pop();
for (int i = 0; i < g[now].size(); ++i) {
int next = g[now][i];
if (-1 == (*result)[next]) {
(*result)[next] = (*result)[now] + 1;
q.push(next);
}
}
}
}
开发者ID:evilmucedin,项目名称:timus,代码行数:18,代码来源:2034.cpp
示例11: print
static double print(void* v) {
TQueue* q = (TQueue*)v;
q->print();
return 1.;
}
开发者ID:neurodebian,项目名称:pkg-neuron,代码行数:5,代码来源:tqueue.cpp
示例12: sim
void sim()
{
int j = 0;
int tickskip = 0, proctime = 0, taskskip = 0;
int tick;
int critT, critP;
TQueue queue;
printf("??????? ??????????? ???????? ?????\n");
critT = input(DIAP);
printf("??????? ??????????? ???????? ??????????\n");
critP = input(DIAP);
printf("??????? ?????????? ??????\n");
tick = input(9000);
if (tick < 20)
{
for (int i = 0; i < tick; i++)
{
if (TaskRand(critT))
{
if (!queue.IsFull())
{
queue.Put(1);
printf("????????? ??????\n");
}
else
{
taskskip++;
printf("?????? ?????????\n");
}
}
if (proctime != 0)
{
printf("????????? ???????????? ??????\n");
if (ProcRand(critP))
{
proctime = 0;
printf("?????? ??????????\n");
}
else
{
proctime++;
printf("?????? ??????????????\n");
}
}
else if (!queue.IsEmpty())
{
printf("????????? ?????? ??????\n");
queue.Push();
if (ProcRand(critP))
{
printf("?????? ??????????\n");
}
else
{
proctime++;
printf("?????? ??????????????\n");
}
}
else
{
tickskip++;
printf("????????? ???????????\n");
}
}
while (!queue.IsEmpty())
{
queue.Push();
j++;
}
}
else
{
for (int i = 0; i < tick; i++)
{
if (TaskRand(critT))
{
if (!queue.IsFull())
{
queue.Put(1);
}
else
{
taskskip++;
}
}
if (proctime != 0)
{
if (ProcRand(critP))
{
proctime = 0;
}
else
{
proctime++;
}
}
else if (!queue.IsEmpty())
{
//.........这里部分代码省略.........
开发者ID:UniquerName,项目名称:Procc,代码行数:101,代码来源:main.cpp
示例13: main
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif
int n = ReadInt();
int m = ReadInt();
int s = ReadInt() - 1;
int f = ReadInt() - 1;
TGraph g(n);
for (int i = 0; i < m; ++i) {
int begin = ReadInt() - 1;
int end = ReadInt() - 1;
int cost = ReadInt();
double p = 1.0 - static_cast<double>(cost) / 100.0;
g[begin].push_back( TNode(end, p) );
g[end].push_back( TNode(begin, p) );
}
/*
for (int i = 0; i < n; ++i) {
shuffle(g[i].begin(), g[i].end(), default_random_engine());
}
*/
const TCost INF(n + 1000, -10.0);
TCosts costs(n, INF);
TIntegers parent(n, -1);
parent[s] = -2;
TQueue q;
{
const TCost cost(0, 1.0);
q.push(s);
costs[s] = cost;
}
while (!q.empty()) {
const int now = q.front();
q.pop();
if (now == f) {
break;
}
const TCost& nowCost = costs[now];
for (TNodes::const_iterator toNode = g[now].begin(); toNode != g[now].end(); ++toNode) {
const int next = toNode->_to;
TCost nextCost(nowCost._iDist + 1, nowCost._fine*toNode->_p);
if (-1 == parent[next] || ((nowCost._iDist + 1 == costs[next]._iDist) && (nowCost._fine*toNode->_p > costs[next]._fine))) {
if (-1 == parent[next]) {
q.push(next);
}
costs[next] = nextCost;
parent[next] = now;
}
}
}
TIntegers path;
int now = f;
while (-2 != now) {
path.push_back(now);
now = parent[now];
}
printf("%d %.12lf\n", path.size(), 1.0 - costs[f]._fine);
for (TIntegers::const_reverse_iterator toPath = path.rbegin(); toPath != path.rend(); ++toPath) {
printf("%d ", *toPath + 1);
}
printf("\n");
return 0;
}
开发者ID:evilmucedin,项目名称:timus,代码行数:75,代码来源:1934.cpp
示例14: remove
static double remove(void* v) {
TQueue* q = (TQueue*)v;
q->remove(q->find(*getarg(1)));
return 1.;
}
开发者ID:neurodebian,项目名称:pkg-neuron,代码行数:5,代码来源:tqueue.cpp
示例15: mvleast
static double mvleast(void* v) {
TQueue* q = (TQueue*)v;
q->move_least(*getarg(1));
return 1.;
}
开发者ID:neurodebian,项目名称:pkg-neuron,代码行数:5,代码来源:tqueue.cpp
示例16: stats
static double stats(void* v) {
TQueue* q = (TQueue*)v;
q->statistics();
return 1.;
}
开发者ID:neurodebian,项目名称:pkg-neuron,代码行数:5,代码来源:tqueue.cpp
示例17: insert
static double insert(void* v) {
TQueue* q = (TQueue*)v;
q->insert(*getarg(1), (void*)1);
return 1.;
}
开发者ID:neurodebian,项目名称:pkg-neuron,代码行数:5,代码来源:tqueue.cpp
示例18: RequestDataReceipt
TInt DZeroCopyLoopbackDevice::RequestDataReceipt()
{
iPendingRead = ETrue;
if(!(iReceiveQueue.IsEmpty() && iSendQueue.IsEmpty()))
{
NKern::Lock();
ReceiveDataCallback();
NKern::Unlock();
}
return KErrNone;
}
开发者ID:cdaffara,项目名称:symbiandump-os1,代码行数:11,代码来源:pdd.cpp
示例19: RequestDataSend
TInt DZeroCopyLoopbackDevice::RequestDataSend()
{
// Push our send buffer in to the queue
iSendQueue.Push();
// Trigger reception
NKern::Lock();
SendDataCallback();
NKern::Unlock();
return KErrNone;
}
开发者ID:cdaffara,项目名称:symbiandump-os1,代码行数:12,代码来源:pdd.cpp
示例20: LocalThread
DWORD WINAPI LocalThread(LPVOID parms)
{
try {
for(int i=0;i<1000;i++)
{
printf("put %d\n",i);
q.Put(i);
Sleep(10);
}
}
catch(const char * c)
{
printf("EXCEPTION in THREAD: %s, err=%d\n",c,GetLastError());
}
return 0;
}
开发者ID:fertesta,项目名称:Queuez,代码行数:16,代码来源:queuez.cpp
注:本文中的TQueue类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论