A sentinel is a loop exit value or list delimiter whose value is outside the range of valid input, such as -1 for a zero-based array index, or ~ for alphabetic strings.

learn more… | top users | synonyms

0
votes
0answers
41 views

Sentinel C# Login

I'm working with Sentinel LDK toolbox from the demo kit, trying to put a simple security method in my WinForms. I used HASP.Login and it generated the following, and HASP_LOGIN_OK is shown after ...
0
votes
2answers
87 views

How too create a bar chart in c++ without functions or arrays

I've spent the past 5 hours trying too write this program, got halfway and realised I cant use arrays or functions, strings etc. The problem is i need too create a program that reads integer values ...
1
vote
5answers
59 views

How to output the decimal in average?

I have a problem in showing the decimals on the average. It keeps showing .00 or .1. I tried to put it in double, but I still get the same results.Also, I want to include the first integer that I ...
0
votes
1answer
103 views

Linked List implementation sentinel [closed]

What is the advantage of using a sentinel implementation of linked lists, and is it used in standard libraries, as C++ std::list.
1
vote
1answer
78 views

How to tell a Client where the new Redis master is using Sentinel

Ok, I feel like I'm missing some crucial piece of information. Locally I have 1 master and 1 slave redis server running on different ports http://redis.io/topics/sentinel I also have 3 sentinels ...
1
vote
2answers
53 views

Loop program issue

For a program I am attempting to write, I must create a program that asks the user to enter a number and calculate the total of all the numbers entered until the user enters a -1 to stop the loop. ...
-1
votes
7answers
162 views

How can I return a specific object (index) from an arraylist in Java?

I created a class called Student and assigned it 3 values (StudentNumber, Course, Mark); I then assigned a created student (s) to an arrayList called studentsCourses. This way each student takes up ...
3
votes
1answer
114 views

Is it possible to add different types to a single arraylist in Java?

I need to create an ArrayList (well it doesn't have to be an ArrayList but that's what I'm attempting so far) to hold student ids, marks, and course names. I have something like this so far: import ...
0
votes
1answer
50 views

Getting an NTVDM error while adding '$' to array in TASM

ideal model small stack 1024 dataseg array1 db 11 dup(?) codeseg org 100h PROC MAIN CALL GETINPUT CALL PRINTARRAY EXIT: mov ah, 4ch int 21h ENDP PROC PRINTARRAY lea dx, ...
1
vote
1answer
114 views

A sentinel control loop and how to print out multiple strings. Beginner java programming

I have this code that determines the deductible and payout in case of a earthquake based on the Richter scale value entered by the user. Here is what my code currently looks like. import ...
1
vote
4answers
90 views

C programming: how do I terminate the program after the user enters a sentinel value?

so I first #define SENTINEL -1 and in a certain function, I set up an if statement void blahblah(blah) { printf("Enter an integer (-1 to quit)"); scanf("%d", &value); if (value == ...
1
vote
1answer
50 views

Can constant objects with static storage duration and equal, constant initializers be coalesced?

Consider two objects with static storage duration and equal, constant initializers: static const int a = 50; static const int b = 50; Is it valid for a compiler to combine these such that &a == ...
0
votes
3answers
90 views

multiple inputs into same string c++

I'm attempting to write a c++ program that prompts for several 1 word inputs until a sentinel value is inputted. Once this value, (i.e. "done"), is inputted, the program should output all the words ...
2
votes
2answers
128 views

Sentinel values for the first iteration of a loop?

Imagine the following pseudocode objects[i], 1 <= i <= n objects[0] = 0 for i from 1 to n if(objects[i] - objects[i-1] > constant) do something I'd like to know if there's a ...
0
votes
5answers
48 views

Stopping thread with sentinel does not work

I'm new to multithreading in java and I can't figure out on how to stop a thread. I have an ArrayList of threads which I want to stop. Here is a snippet of my code: class PrimeThread implements ...
0
votes
1answer
266 views

using sentinel-controlled loop

im having trouble with an exercise asking to have a user prompt a name and echoes that name to the screen until user enters a sentinel value. i understand this is a sentinel-controlled loop but im ...
0
votes
2answers
89 views

Keep doing stuff until empty line entered

I cant get this to work for some reason. I have an app that reads transactions, when an empty line in entered it needs to print out some stuff. int transationCount = 0; while(sc.hasNext()) ...
2
votes
1answer
99 views

maximum and minimum - sentinel controlled repetition [closed]

I have to find the maximum and the minimum using a sentinel controlled repetition. "maximum” is not working properly. Can anyone help me with some clue about what’s wrong in my code? ...
1
vote
2answers
759 views

C++ Linked List - Reading data from a file with a sentinel

So I've done quite a bit of research on this and can't get my output to work correctly. I need to read in data from a file and have it stored into a Linked List. The while loop used should stop once ...
2
votes
1answer
167 views

Deep copy and deconstructor sentinel linked list using Nodes

I am currently making a linked List program using Nodes(not that i know of any other way) and I have come upon a problem about creating a deep copy and getting rid of all my Nodes and Sentinels with ...
2
votes
1answer
95 views

The meaning of special characters in whitespace-mode

In whitespace-mode (whitespace.el on EmacsWiki), there's a variable called whitespace-display-mappings. The variable determines how certain special characters should be rendered in different contexts. ...
1
vote
1answer
115 views

gcc: Double NULL sentinel attribute?

I have a variadic function that requires a double-NULL terminator. Contrived, Simplified Example void makeLine(char *name, ...) { ... accepts (x,y) coordinates until (0,0) is found, ... ...
0
votes
0answers
150 views

AVL Tree sentinel

Hello I am trying to finish a school project with AVL trees. What happens is that once I insert the root as well as two other nodes everything is ok, the program fails if I try adding any more than ...
2
votes
2answers
66 views

Encoding a DBMS stored value with a trailing sentinel to detect truncation/corruption; pros? cons? alternatives?

Recently a team I support encountered an issue with a value which they were storing in (and retrieving from) a MySQL database. They tell me that they were storing a comma delimited value in a ...
3
votes
1answer
740 views

C# HASP login code

I want to try out hasp api to build my custom security behaviour but when I use code generated by Sentinel HASP ToolBox it does not work. I pasted this code from Toolbox to onLoad Form method: ...
3
votes
5answers
974 views

How to log exceptions with network targets in NLog

I am using the NLog logging framework and am trying to get exception and stacktrace information showing up in any UDP logger appliaction, such as Sentinel and Log2Console, but can only get the log ...
2
votes
1answer
93 views

Ruby sentinel loop not working as expected (Seven Languages In Seven Weeks)

Just started working through the Ruby chapter in Mr. Tate's "Seven Language in Seven Weeks". For the bonus question in Day 1, I am to generate a "random" number, read a user's guess from the input, ...
0
votes
1answer
535 views

Exercise from Visual Studio C# 2010 fourth edition

I've working on a C# application that is supposed to input miles driven and gallons used(integers) for each tankful of gas and then the application should calculate and display the miles per gallon ...
0
votes
2answers
156 views

How do we break the loop without adding the sentinel to the average?

As the code stands now, the sentinel is being included in the calculation for the average. Any pointers on how to break the loop without including the sentinel? #include <iostream> using ...
0
votes
1answer
257 views

What is wrong with this contains(T entry) method? Java. Linked List

I'm making a linked list class and am trying to implement this contains() method. I have head and tail sentinel nodes, so I have the loop start at head.next. length is the size of the list. Bout ...
1
vote
2answers
1k views

What are sentinel in C language? I was learning Merge sort and came across using sentinel as infinity in the merge step

I was learning Merge sort and came across using sentinel as infinity in the merge step. Here is the algorithm from the Cormen's book. Why we have used infinity in step 8 and 9??? MERGE(A, p, q, r) ...
6
votes
1answer
224 views

On creating variadic function with custom sentinel value

I've tried looking around the web to no avail. Is it possible to create a variadic function that has custom sentinel argument? The documentation on gnu's C states that if function has ...
0
votes
1answer
69 views

When to use sentinel values?

I recently had to use a GPS location API where each location object had among other things two properties altitude and verticalAccuracy. A negative verticalAccuracy signifies that altitude is invalid, ...
2
votes
4answers
276 views

C/GL: Using -1 as sentinel on array of unsigned integers

I am passing an array of vertex indices in some GL code... each element is a GLushort I want to terminate with a sentinel so as to avoid having to laboriously pass the array length each time ...
1
vote
3answers
268 views

Binary file special characters

I'm coding a suffix array sorting, and this algorithm appends a sentinel character to the original string. This character must not be in the original string. Since this algorithm will process binary ...
-1
votes
2answers
123 views

fill shape with C

i wrote a program to fill in closed figures with asterisks. for some reason, it isn't accepting the sentinel value EOF (Ctrl-D). why is this? #include "usefunc.h" #define height 100 #define width ...
8
votes
1answer
153 views

Why aren't bound instance methods in python reference equal?

>>> class foo(object): ... def test(s): ... pass ... >>> a=foo() >>> a.test is a.test False >>> print a.test <bound method foo.test of ...
0
votes
2answers
181 views

Is there anything like method/function sentinels in C++/C?

In Objective-C you can say something like: NSArray *anArray = [NSArray arrayWithObjects:obj,obj2, nil]; In case you are not familiar with objective-c it is saying I want an object of type of ...